@backstage/plugin-tech-insights-common
Advanced tools
Comparing version 0.0.0-nightly-202201122931 to 0.0.0-nightly-202201323044
# @backstage/plugin-tech-insights-common | ||
## 0.0.0-nightly-202201323044 | ||
### Patch Changes | ||
- a60eb0f0dd: adding new operation to run checks for multiple entities in one request | ||
- Updated dependencies | ||
- @backstage/types@0.0.0-nightly-202201323044 | ||
## 0.2.0 | ||
@@ -4,0 +12,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.0.0-nightly-202201122931", | ||
"version": "0.0.0-nightly-202201323044", | ||
"main": "dist/index.cjs.js", | ||
@@ -35,6 +35,6 @@ "types": "dist/index.d.ts", | ||
"luxon": "^2.0.2", | ||
"@backstage/types": "^0.0.0-nightly-202201122931" | ||
"@backstage/types": "^0.0.0-nightly-202201323044" | ||
}, | ||
"devDependencies": { | ||
"@backstage/cli": "^0.0.0-nightly-202201122931" | ||
"@backstage/cli": "^0.0.0-nightly-202201323044" | ||
}, | ||
@@ -41,0 +41,0 @@ "files": [ |
4917
112