update dist

This commit is contained in:
woodser 2024-07-20 18:26:55 -04:00
parent 46aa6b7648
commit 02b4dfdba1
9 changed files with 396 additions and 7 deletions

View file

@ -638,6 +638,9 @@ class PaymentAccountsClient {
this.methodDescriptorCreateCryptoCurrencyPaymentAccount = new grpcWeb.MethodDescriptor('/io.haveno.protobuffer.PaymentAccounts/CreateCryptoCurrencyPaymentAccount', grpcWeb.MethodType.UNARY, grpc_pb.CreateCryptoCurrencyPaymentAccountRequest, grpc_pb.CreateCryptoCurrencyPaymentAccountReply, (request) => {
return request.serializeBinary();
}, grpc_pb.CreateCryptoCurrencyPaymentAccountReply.deserializeBinary);
this.methodDescriptorDeletePaymentAccount = new grpcWeb.MethodDescriptor('/io.haveno.protobuffer.PaymentAccounts/DeletePaymentAccount', grpcWeb.MethodType.UNARY, grpc_pb.DeletePaymentAccountRequest, grpc_pb.DeletePaymentAccountReply, (request) => {
return request.serializeBinary();
}, grpc_pb.DeletePaymentAccountReply.deserializeBinary);
this.methodDescriptorGetCryptoCurrencyPaymentMethods = new grpcWeb.MethodDescriptor('/io.haveno.protobuffer.PaymentAccounts/GetCryptoCurrencyPaymentMethods', grpcWeb.MethodType.UNARY, grpc_pb.GetCryptoCurrencyPaymentMethodsRequest, grpc_pb.GetCryptoCurrencyPaymentMethodsReply, (request) => {
return request.serializeBinary();
}, grpc_pb.GetCryptoCurrencyPaymentMethodsReply.deserializeBinary);
@ -702,6 +705,14 @@ class PaymentAccountsClient {
return this.client_.unaryCall(this.hostname_ +
'/io.haveno.protobuffer.PaymentAccounts/CreateCryptoCurrencyPaymentAccount', request, metadata || {}, this.methodDescriptorCreateCryptoCurrencyPaymentAccount);
}
deletePaymentAccount(request, metadata, callback) {
if (callback !== undefined) {
return this.client_.rpcCall(this.hostname_ +
'/io.haveno.protobuffer.PaymentAccounts/DeletePaymentAccount', request, metadata || {}, this.methodDescriptorDeletePaymentAccount, callback);
}
return this.client_.unaryCall(this.hostname_ +
'/io.haveno.protobuffer.PaymentAccounts/DeletePaymentAccount', request, metadata || {}, this.methodDescriptorDeletePaymentAccount);
}
getCryptoCurrencyPaymentMethods(request, metadata, callback) {
if (callback !== undefined) {
return this.client_.rpcCall(this.hostname_ +