@backstage/plugin-search-common
Advanced tools
Comparing version 0.3.3-next.1 to 0.3.3
# @backstage/plugin-search-common | ||
## 0.3.3 | ||
### Patch Changes | ||
- c8b295f2fb: - Introduce `SearchDocument` type. This type contains the subset of `IndexableDocument` properties relevant to the frontend, and is intended to be used for documents returned to the frontend from the search API. | ||
- `SearchResultSet` is now a wrapper for documents of type `SearchDocument`, and is intended to be used in the frontend. This isn't a breaking change, since `IndexableDocument`s are valid `SearchDocument`s, so the old and new types are compatible. | ||
- Introduce `IndexableResultSet` type, which wraps `IndexableDocument` instances in the same way as `SearchResultSet`. | ||
- Updated dependencies | ||
- @backstage/plugin-permission-common@0.6.0 | ||
## 0.3.3-next.1 | ||
@@ -4,0 +14,0 @@ |
{ | ||
"name": "@backstage/plugin-search-common", | ||
"description": "Common functionalities for Search, to be shared between various search-enabled plugins", | ||
"version": "0.3.3-next.1", | ||
"version": "0.3.3", | ||
"main": "dist/index.cjs.js", | ||
@@ -42,7 +42,7 @@ "types": "dist/index.d.ts", | ||
"dependencies": { | ||
"@backstage/plugin-permission-common": "^0.6.0-next.0", | ||
"@backstage/plugin-permission-common": "^0.6.0", | ||
"@backstage/types": "^1.0.0" | ||
}, | ||
"devDependencies": { | ||
"@backstage/cli": "^0.17.0-next.1" | ||
"@backstage/cli": "^0.17.0" | ||
}, | ||
@@ -54,3 +54,3 @@ "jest": { | ||
}, | ||
"gitHead": "57d12dcc35aeb6c33b09e51d1efc3408c574f109" | ||
"gitHead": "e0e44c433319711c2fb8b175db411a621f7aaec2" | ||
} |
24786