add checks bulk operation

Signed-off-by: goenning <me@goenning.net>
This commit is contained in:
goenning
2022-01-11 09:58:07 +00:00
parent 4c9c45f351
commit a60eb0f0dd
8 changed files with 93 additions and 5 deletions
@@ -12,6 +12,12 @@ export interface BooleanCheckResult extends CheckResult {
result: boolean;
}
// @public
export type BulkCheckResponse = Array<{
entity: string;
results: CheckResult[];
}>;
// @public
export interface CheckResponse {
description: string;
+10
View File
@@ -124,3 +124,13 @@ export type CheckResult = {
export interface BooleanCheckResult extends CheckResult {
result: boolean;
}
/**
* Response type for bulk check opretation. Contains a list of entities and their respective check results.
*
* @public
*/
export type BulkCheckResponse = Array<{
entity: string;
results: CheckResult[];
}>;