Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add Search parameter to status board product, application, service #854

Merged
merged 2 commits into from
Nov 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Changes

This document describes the relevant changes between releases of the API model.
## 0.0.331 October 27 2023
- Add `Search` method to `status_board` `products_resource`, `applications_resource`, and `services_resource` models

## 0.0.330 October 26 2023
- Add `Update` method to `HypershiftConfig` resource

Expand Down
1 change: 1 addition & 0 deletions model/status_board/v1/applications_resource.model
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ resource Applications {
in OrderBy String
in out Page Integer = 1
in out Size Integer = 100
in Search String
out Total Integer
out Items []Application
}
Expand Down
1 change: 1 addition & 0 deletions model/status_board/v1/products_resource.model
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ resource Products {
in out Size Integer = 100
in Fullname String
in OrderBy String
in Search String
out Total Integer
out Items []Product
}
Expand Down
1 change: 1 addition & 0 deletions model/status_board/v1/services_resource.model
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ resource Services {
in OrderBy String
in Fullname String
in Mine Boolean
in Search String
out Total Integer
out Items []Service
}
Expand Down
Loading