@backstage/plugin-techdocs-backend 1.6.1-next.1 → 1.6.1-next.2
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 +18 -0
- package/alpha/package.json +1 -1
- package/dist/index.d.ts +6 -6
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @backstage/plugin-techdocs-backend
|
|
2
2
|
|
|
3
|
+
## 1.6.1-next.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/backend-common@0.18.4-next.2
|
|
9
|
+
- @backstage/catalog-client@1.4.1-next.0
|
|
10
|
+
- @backstage/backend-plugin-api@0.5.1-next.2
|
|
11
|
+
- @backstage/catalog-model@1.2.1
|
|
12
|
+
- @backstage/config@1.0.7
|
|
13
|
+
- @backstage/errors@1.1.5
|
|
14
|
+
- @backstage/integration@1.4.4-next.0
|
|
15
|
+
- @backstage/plugin-catalog-common@1.0.13-next.0
|
|
16
|
+
- @backstage/plugin-permission-common@0.7.5-next.0
|
|
17
|
+
- @backstage/plugin-search-backend-module-techdocs@0.1.0-next.1
|
|
18
|
+
- @backstage/plugin-search-common@1.2.3-next.0
|
|
19
|
+
- @backstage/plugin-techdocs-node@1.6.1-next.2
|
|
20
|
+
|
|
3
21
|
## 1.6.1-next.1
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
package/alpha/package.json
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -17,7 +17,7 @@ import { Permission } from '@backstage/plugin-permission-common';
|
|
|
17
17
|
*
|
|
18
18
|
* @public
|
|
19
19
|
*/
|
|
20
|
-
|
|
20
|
+
type ShouldBuildParameters = {
|
|
21
21
|
entity: Entity;
|
|
22
22
|
};
|
|
23
23
|
/**
|
|
@@ -35,7 +35,7 @@ interface DocsBuildStrategy {
|
|
|
35
35
|
*
|
|
36
36
|
* @public
|
|
37
37
|
*/
|
|
38
|
-
|
|
38
|
+
type OutOfTheBoxDeploymentOptions = {
|
|
39
39
|
preparers: PreparerBuilder;
|
|
40
40
|
generators: GeneratorBuilder;
|
|
41
41
|
publisher: PublisherBase;
|
|
@@ -54,7 +54,7 @@ declare type OutOfTheBoxDeploymentOptions = {
|
|
|
54
54
|
*
|
|
55
55
|
* @public
|
|
56
56
|
*/
|
|
57
|
-
|
|
57
|
+
type RecommendedDeploymentOptions = {
|
|
58
58
|
publisher: PublisherBase;
|
|
59
59
|
logger: winston.Logger;
|
|
60
60
|
discovery: PluginEndpointDiscovery;
|
|
@@ -69,7 +69,7 @@ declare type RecommendedDeploymentOptions = {
|
|
|
69
69
|
*
|
|
70
70
|
* @public
|
|
71
71
|
*/
|
|
72
|
-
|
|
72
|
+
type RouterOptions = RecommendedDeploymentOptions | OutOfTheBoxDeploymentOptions;
|
|
73
73
|
/**
|
|
74
74
|
* Creates a techdocs router.
|
|
75
75
|
*
|
|
@@ -82,7 +82,7 @@ declare function createRouter(options: RouterOptions): Promise<express.Router>;
|
|
|
82
82
|
*
|
|
83
83
|
* @public
|
|
84
84
|
*/
|
|
85
|
-
|
|
85
|
+
type TechDocsCollatorOptions = {
|
|
86
86
|
discovery: PluginEndpointDiscovery;
|
|
87
87
|
logger: Logger;
|
|
88
88
|
tokenManager: TokenManager;
|
|
@@ -119,7 +119,7 @@ declare class DefaultTechDocsCollator {
|
|
|
119
119
|
* @public
|
|
120
120
|
* @deprecated import from `@backstage/search-backend-module-techdocs` instead
|
|
121
121
|
*/
|
|
122
|
-
|
|
122
|
+
type TechDocsCollatorFactoryOptions = TechDocsCollatorFactoryOptions$1;
|
|
123
123
|
/**
|
|
124
124
|
* @public
|
|
125
125
|
* @deprecated import from `@backstage/search-backend-module-techdocs` instead
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-techdocs-backend",
|
|
3
3
|
"description": "The Backstage backend plugin that renders technical documentation for your components",
|
|
4
|
-
"version": "1.6.1-next.
|
|
4
|
+
"version": "1.6.1-next.2",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -46,18 +46,18 @@
|
|
|
46
46
|
"clean": "backstage-cli package clean"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@backstage/backend-common": "^0.18.4-next.
|
|
50
|
-
"@backstage/backend-plugin-api": "^0.5.1-next.
|
|
51
|
-
"@backstage/catalog-client": "^1.4.0",
|
|
49
|
+
"@backstage/backend-common": "^0.18.4-next.2",
|
|
50
|
+
"@backstage/backend-plugin-api": "^0.5.1-next.2",
|
|
51
|
+
"@backstage/catalog-client": "^1.4.1-next.0",
|
|
52
52
|
"@backstage/catalog-model": "^1.2.1",
|
|
53
53
|
"@backstage/config": "^1.0.7",
|
|
54
54
|
"@backstage/errors": "^1.1.5",
|
|
55
55
|
"@backstage/integration": "^1.4.4-next.0",
|
|
56
56
|
"@backstage/plugin-catalog-common": "^1.0.13-next.0",
|
|
57
57
|
"@backstage/plugin-permission-common": "^0.7.5-next.0",
|
|
58
|
-
"@backstage/plugin-search-backend-module-techdocs": "^0.1.0-next.
|
|
58
|
+
"@backstage/plugin-search-backend-module-techdocs": "^0.1.0-next.1",
|
|
59
59
|
"@backstage/plugin-search-common": "^1.2.3-next.0",
|
|
60
|
-
"@backstage/plugin-techdocs-node": "^1.6.1-next.
|
|
60
|
+
"@backstage/plugin-techdocs-node": "^1.6.1-next.2",
|
|
61
61
|
"@types/express": "^4.17.6",
|
|
62
62
|
"dockerode": "^3.3.1",
|
|
63
63
|
"express": "^4.17.1",
|
|
@@ -70,9 +70,9 @@
|
|
|
70
70
|
"winston": "^3.2.1"
|
|
71
71
|
},
|
|
72
72
|
"devDependencies": {
|
|
73
|
-
"@backstage/backend-test-utils": "^0.1.36-next.
|
|
74
|
-
"@backstage/cli": "^0.22.6-next.
|
|
75
|
-
"@backstage/plugin-search-backend-node": "^1.2.0-next.
|
|
73
|
+
"@backstage/backend-test-utils": "^0.1.36-next.2",
|
|
74
|
+
"@backstage/cli": "^0.22.6-next.2",
|
|
75
|
+
"@backstage/plugin-search-backend-node": "^1.2.0-next.2",
|
|
76
76
|
"@types/dockerode": "^3.3.0",
|
|
77
77
|
"msw": "^1.0.0",
|
|
78
78
|
"supertest": "^6.1.3"
|