feat(client): searchStore takes provider + namespace filter params
Some checks failed
Security / Security check (push) Failing after 2s
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:
parent
7569e2aa53
commit
332d11af1d
3 changed files with 41 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue