@backstage/plugin-search-common 1.2.11 → 1.2.12-next.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +9 -0
- package/dist/index.d.ts +1 -1
- package/package.json +11 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @backstage/plugin-search-common
|
|
2
2
|
|
|
3
|
+
## 1.2.12-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- d44a20a: Added additional plugin metadata to `package.json`.
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/plugin-permission-common@0.7.14-next.0
|
|
10
|
+
- @backstage/types@1.1.1
|
|
11
|
+
|
|
3
12
|
## 1.2.11
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -215,4 +215,4 @@ interface SearchEngine {
|
|
|
215
215
|
query(query: SearchQuery, options?: QueryRequestOptions): Promise<IndexableResultSet>;
|
|
216
216
|
}
|
|
217
217
|
|
|
218
|
-
export { DocumentCollatorFactory, DocumentDecoratorFactory, DocumentTypeInfo, IndexableDocument, IndexableResult, IndexableResultSet, QueryRequestOptions, QueryTranslator, Result, ResultHighlight, ResultSet, SearchDocument, SearchEngine, SearchQuery, SearchResult, SearchResultSet };
|
|
218
|
+
export type { DocumentCollatorFactory, DocumentDecoratorFactory, DocumentTypeInfo, IndexableDocument, IndexableResult, IndexableResultSet, QueryRequestOptions, QueryTranslator, Result, ResultHighlight, ResultSet, SearchDocument, SearchEngine, SearchQuery, SearchResult, SearchResultSet };
|
package/package.json
CHANGED
|
@@ -1,9 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-search-common",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.12-next.0",
|
|
4
4
|
"description": "Common functionalities for Search, to be shared between various search-enabled plugins",
|
|
5
5
|
"backstage": {
|
|
6
|
-
"role": "common-library"
|
|
6
|
+
"role": "common-library",
|
|
7
|
+
"pluginId": "search",
|
|
8
|
+
"pluginPackages": [
|
|
9
|
+
"@backstage/plugin-search",
|
|
10
|
+
"@backstage/plugin-search-backend",
|
|
11
|
+
"@backstage/plugin-search-common",
|
|
12
|
+
"@backstage/plugin-search-react"
|
|
13
|
+
]
|
|
7
14
|
},
|
|
8
15
|
"publishConfig": {
|
|
9
16
|
"access": "public",
|
|
@@ -44,11 +51,11 @@
|
|
|
44
51
|
]
|
|
45
52
|
},
|
|
46
53
|
"dependencies": {
|
|
47
|
-
"@backstage/plugin-permission-common": "^0.7.
|
|
54
|
+
"@backstage/plugin-permission-common": "^0.7.14-next.0",
|
|
48
55
|
"@backstage/types": "^1.1.1"
|
|
49
56
|
},
|
|
50
57
|
"devDependencies": {
|
|
51
|
-
"@backstage/cli": "^0.26.
|
|
58
|
+
"@backstage/cli": "^0.26.7-next.3"
|
|
52
59
|
},
|
|
53
60
|
"module": "./dist/index.esm.js"
|
|
54
61
|
}
|