@backstage/plugin-search-backend-module-explore 0.2.5-next.2 → 0.2.5
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 +21 -0
- package/dist/index.d.ts +1 -1
- package/package.json +18 -9
- package/alpha/package.json +0 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @backstage/plugin-search-backend-module-explore
|
|
2
2
|
|
|
3
|
+
## 0.2.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- a9a7c7c: Updated dependency `@backstage-community/plugin-explore-common` to `^0.0.7`.
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/config@1.3.0
|
|
10
|
+
- @backstage/backend-plugin-api@1.0.2
|
|
11
|
+
- @backstage/plugin-search-backend-node@1.3.5
|
|
12
|
+
- @backstage/plugin-search-common@1.2.15
|
|
13
|
+
|
|
14
|
+
## 0.2.5-next.3
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- Updated dependencies
|
|
19
|
+
- @backstage/backend-plugin-api@1.0.2-next.2
|
|
20
|
+
- @backstage/config@1.2.0
|
|
21
|
+
- @backstage/plugin-search-backend-node@1.3.5-next.3
|
|
22
|
+
- @backstage/plugin-search-common@1.2.14
|
|
23
|
+
|
|
3
24
|
## 0.2.5-next.2
|
|
4
25
|
|
|
5
26
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ import * as _backstage_backend_plugin_api from '@backstage/backend-plugin-api';
|
|
|
4
4
|
import { DiscoveryService, LoggerService, AuthService } from '@backstage/backend-plugin-api';
|
|
5
5
|
import { Config } from '@backstage/config';
|
|
6
6
|
import { ExploreTool } from '@backstage-community/plugin-explore-common';
|
|
7
|
-
import {
|
|
7
|
+
import { DocumentCollatorFactory, IndexableDocument } from '@backstage/plugin-search-common';
|
|
8
8
|
import { Readable } from 'stream';
|
|
9
9
|
|
|
10
10
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-search-backend-module-explore",
|
|
3
|
-
"version": "0.2.5
|
|
3
|
+
"version": "0.2.5",
|
|
4
4
|
"description": "A module for the search backend that exports explore modules",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin-module",
|
|
@@ -34,10 +34,19 @@
|
|
|
34
34
|
},
|
|
35
35
|
"main": "./dist/index.cjs.js",
|
|
36
36
|
"types": "./dist/index.d.ts",
|
|
37
|
+
"typesVersions": {
|
|
38
|
+
"*": {
|
|
39
|
+
"index": [
|
|
40
|
+
"dist/index.d.ts"
|
|
41
|
+
],
|
|
42
|
+
"alpha": [
|
|
43
|
+
"dist/alpha.d.ts"
|
|
44
|
+
]
|
|
45
|
+
}
|
|
46
|
+
},
|
|
37
47
|
"files": [
|
|
38
48
|
"dist",
|
|
39
|
-
"config.d.ts"
|
|
40
|
-
"alpha"
|
|
49
|
+
"config.d.ts"
|
|
41
50
|
],
|
|
42
51
|
"scripts": {
|
|
43
52
|
"build": "backstage-cli package build",
|
|
@@ -51,15 +60,15 @@
|
|
|
51
60
|
"dependencies": {
|
|
52
61
|
"@backstage-community/plugin-explore-common": "^0.0.7",
|
|
53
62
|
"@backstage/backend-common": "^0.25.0",
|
|
54
|
-
"@backstage/backend-plugin-api": "1.0.2
|
|
55
|
-
"@backstage/config": "1.
|
|
56
|
-
"@backstage/plugin-search-backend-node": "1.3.5
|
|
57
|
-
"@backstage/plugin-search-common": "1.2.
|
|
63
|
+
"@backstage/backend-plugin-api": "^1.0.2",
|
|
64
|
+
"@backstage/config": "^1.3.0",
|
|
65
|
+
"@backstage/plugin-search-backend-node": "^1.3.5",
|
|
66
|
+
"@backstage/plugin-search-common": "^1.2.15",
|
|
58
67
|
"node-fetch": "^2.7.0"
|
|
59
68
|
},
|
|
60
69
|
"devDependencies": {
|
|
61
|
-
"@backstage/backend-test-utils": "1.1.0
|
|
62
|
-
"@backstage/cli": "0.29.0
|
|
70
|
+
"@backstage/backend-test-utils": "^1.1.0",
|
|
71
|
+
"@backstage/cli": "^0.29.0",
|
|
63
72
|
"msw": "^1.2.1"
|
|
64
73
|
},
|
|
65
74
|
"configSchema": "config.d.ts"
|