Skip to content

Commit

Permalink
add Search parameter to status board product, application, service
Browse files Browse the repository at this point in the history
  • Loading branch information
smcavey committed Oct 27, 2023
1 parent c94fe85 commit ccb1b8b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 0 deletions.
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

0 comments on commit ccb1b8b

Please sign in to comment.