bff dev upgrde

This commit is contained in:
Stephan D
2026-01-30 16:39:12 +01:00
parent 51f5b0804a
commit e1f58b0982
22 changed files with 969 additions and 185 deletions

View File

@@ -5,6 +5,7 @@ package chain.gateway.v1;
option go_package = "github.com/tech/sendico/pkg/proto/gateway/chain/v1;chainv1";
import "google/protobuf/timestamp.proto";
import "google/protobuf/wrappers.proto";
import "common/money/v1/money.proto";
import "common/pagination/v1/cursor.proto";
import "common/describable/v1/describable.proto";
@@ -85,9 +86,15 @@ message GetManagedWalletResponse {
message ListManagedWalletsRequest {
string organization_ref = 1;
string owner_ref = 2;
reserved 2;
reserved "owner_ref";
Asset asset = 3;
common.pagination.v1.CursorPageRequest page = 4;
// Optional owner filter with 3-state semantics:
// - not set: return all wallets within organization
// - set to empty string: return wallets where owner_ref is null/empty
// - set to a value: return wallets where owner_ref matches
google.protobuf.StringValue owner_ref_filter = 5;
}
message ListManagedWalletsResponse {