feat(client): searchStore takes provider + namespace filter params
Some checks failed
Security / Security check (push) Failing after 2s

Signed-off-by: flemming-it <stefan.a.flemming@googlemail.com>
This commit is contained in:
flemming-it 2026-05-28 14:23:32 +02:00
parent 7569e2aa53
commit 332d11af1d
3 changed files with 41 additions and 1 deletions

View file

@ -518,6 +518,8 @@ class HubClient {
String category = '',
String tag = '',
String status = '',
String provider = '',
String namespace = '',
int limit = 50,
}) async {
final r = await _admin.searchStore(pb.SearchStoreRequest(
@ -525,6 +527,8 @@ class HubClient {
category: category,
tag: tag,
status: status,
provider: provider,
namespace: namespace,
limit: limit,
));
return r.entries;