-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
VR-228: query response bugfix (#181)
* VR-228: curly bracket removal and controller update (types). * VR-228: rebase with main. * VR-228: a few refinements in regards to partials along with total emissions. * VR-228: second company mock.' * VR-228: switch back company number to DC. * VR-228: do not deconstruct @Body since CI/CD complains. * VR-228: remove id attribute since it's no longer needed. * VR-228: avoiding allowing excess properties for partial queries. * VR-228: avoid arbitrary data in the request body * VR-228: tidy up and a comment . * VR-228: validation check and grouping of partial query inputs. * VR-228: quantity -> quantities (rename). * VR-228: partial validation tests. * VR-228: typo.:
- Loading branch information
Showing
11 changed files
with
208 additions
and
38 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
export type PartialQuery = { connectionId: string; productId: string; quantity: number } | ||
export type PartialQueryPayload = { | ||
connectionIds?: string[] | ||
productIds?: string[] | ||
quantities?: string[] | ||
} |
Oops, something went wrong.