@backstage/plugin-tech-insights-common
Advanced tools
Comparing version 0.2.0 to 0.2.1
# @backstage/plugin-tech-insights-common | ||
## 0.2.1 | ||
### Patch Changes | ||
- a60eb0f0dd: adding new operation to run checks for multiple entities in one request | ||
## 0.2.0 | ||
@@ -4,0 +10,0 @@ |
@@ -102,3 +102,12 @@ import { DateTime } from 'luxon'; | ||
} | ||
/** | ||
* Response type for bulk check opretation. Contains a list of entities and their respective check results. | ||
* | ||
* @public | ||
*/ | ||
declare type BulkCheckResponse = Array<{ | ||
entity: string; | ||
results: CheckResult[]; | ||
}>; | ||
export { BooleanCheckResult, CheckResponse, CheckResult, FactResponse }; | ||
export { BooleanCheckResult, BulkCheckResponse, CheckResponse, CheckResult, FactResponse }; |
{ | ||
"name": "@backstage/plugin-tech-insights-common", | ||
"version": "0.2.0", | ||
"version": "0.2.1", | ||
"main": "dist/index.cjs.js", | ||
@@ -38,3 +38,3 @@ "types": "dist/index.d.ts", | ||
"devDependencies": { | ||
"@backstage/cli": "^0.10.0" | ||
"@backstage/cli": "^0.11.0" | ||
}, | ||
@@ -44,3 +44,3 @@ "files": [ | ||
], | ||
"gitHead": "a05e7081b805006e3f0b2960a08a7753357f532f" | ||
"gitHead": "da66c61bdd63cdb3f0f0cd2e26dc9e6454d93c7b" | ||
} |
15664
112