@backstage/plugin-techdocs-node 1.13.1-next.0 → 1.13.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 +28 -0
- package/dist/index.d.ts +4 -5
- package/package.json +5 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# @backstage/plugin-techdocs-node
|
|
2
2
|
|
|
3
|
+
## 1.13.1-next.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/integration@1.16.2-next.0
|
|
9
|
+
- @backstage/backend-plugin-api@1.2.1-next.1
|
|
10
|
+
- @backstage/catalog-model@1.7.3
|
|
11
|
+
- @backstage/config@1.3.2
|
|
12
|
+
- @backstage/errors@1.2.7
|
|
13
|
+
- @backstage/integration-aws-node@0.1.15
|
|
14
|
+
- @backstage/plugin-search-common@1.2.17
|
|
15
|
+
- @backstage/plugin-techdocs-common@0.1.0
|
|
16
|
+
|
|
17
|
+
## 1.13.1-next.1
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies
|
|
22
|
+
- @backstage/backend-plugin-api@1.2.1-next.1
|
|
23
|
+
- @backstage/catalog-model@1.7.3
|
|
24
|
+
- @backstage/config@1.3.2
|
|
25
|
+
- @backstage/errors@1.2.7
|
|
26
|
+
- @backstage/integration@1.16.1
|
|
27
|
+
- @backstage/integration-aws-node@0.1.15
|
|
28
|
+
- @backstage/plugin-search-common@1.2.17
|
|
29
|
+
- @backstage/plugin-techdocs-common@0.1.0
|
|
30
|
+
|
|
3
31
|
## 1.13.1-next.0
|
|
4
32
|
|
|
5
33
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="node" />
|
|
2
1
|
import { Entity, CompoundEntityRef } from '@backstage/catalog-model';
|
|
3
2
|
import { Config } from '@backstage/config';
|
|
4
3
|
import * as _backstage_backend_plugin_api from '@backstage/backend-plugin-api';
|
|
@@ -116,7 +115,7 @@ declare const parseReferenceAnnotation: (annotationName: string, entity: Entity)
|
|
|
116
115
|
* @returns the transformed location with an absolute target.
|
|
117
116
|
*/
|
|
118
117
|
declare const transformDirLocation: (entity: Entity, dirAnnotation: ParsedLocationAnnotation, scmIntegrations: ScmIntegrationRegistry) => {
|
|
119
|
-
type:
|
|
118
|
+
type: "dir" | "url";
|
|
120
119
|
target: string;
|
|
121
120
|
};
|
|
122
121
|
/**
|
|
@@ -313,9 +312,9 @@ declare const getMkdocsYml: (inputDir: string, options?: {
|
|
|
313
312
|
* Deprecated in favor of getMkdocsYml (lowercase 'd')
|
|
314
313
|
*/
|
|
315
314
|
declare const getMkDocsYml: (inputDir: string, options?: {
|
|
316
|
-
name?: string
|
|
317
|
-
mkdocsConfigFileName?: string
|
|
318
|
-
}
|
|
315
|
+
name?: string;
|
|
316
|
+
mkdocsConfigFileName?: string;
|
|
317
|
+
}) => Promise<{
|
|
319
318
|
path: string;
|
|
320
319
|
content: string;
|
|
321
320
|
configIsTemporary: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-techdocs-node",
|
|
3
|
-
"version": "1.13.1-next.
|
|
3
|
+
"version": "1.13.1-next.2",
|
|
4
4
|
"description": "Common node.js functionalities for TechDocs, to be shared between techdocs-backend plugin and techdocs-cli",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "node-library",
|
|
@@ -53,11 +53,11 @@
|
|
|
53
53
|
"@aws-sdk/types": "^3.347.0",
|
|
54
54
|
"@azure/identity": "^4.0.0",
|
|
55
55
|
"@azure/storage-blob": "^12.5.0",
|
|
56
|
-
"@backstage/backend-plugin-api": "1.2.1-next.
|
|
56
|
+
"@backstage/backend-plugin-api": "1.2.1-next.1",
|
|
57
57
|
"@backstage/catalog-model": "1.7.3",
|
|
58
58
|
"@backstage/config": "1.3.2",
|
|
59
59
|
"@backstage/errors": "1.2.7",
|
|
60
|
-
"@backstage/integration": "1.16.
|
|
60
|
+
"@backstage/integration": "1.16.2-next.0",
|
|
61
61
|
"@backstage/integration-aws-node": "0.1.15",
|
|
62
62
|
"@backstage/plugin-search-common": "1.2.17",
|
|
63
63
|
"@backstage/plugin-techdocs-common": "0.1.0",
|
|
@@ -78,8 +78,8 @@
|
|
|
78
78
|
"winston": "^3.2.1"
|
|
79
79
|
},
|
|
80
80
|
"devDependencies": {
|
|
81
|
-
"@backstage/backend-test-utils": "1.3.1-next.
|
|
82
|
-
"@backstage/cli": "0.
|
|
81
|
+
"@backstage/backend-test-utils": "1.3.1-next.2",
|
|
82
|
+
"@backstage/cli": "0.31.0-next.1",
|
|
83
83
|
"@types/fs-extra": "^11.0.0",
|
|
84
84
|
"@types/js-yaml": "^4.0.0",
|
|
85
85
|
"@types/mime-types": "^2.1.0",
|
|
@@ -87,12 +87,5 @@
|
|
|
87
87
|
"@types/supertest": "^2.0.8",
|
|
88
88
|
"aws-sdk-client-mock": "^4.0.0",
|
|
89
89
|
"supertest": "^7.0.0"
|
|
90
|
-
},
|
|
91
|
-
"typesVersions": {
|
|
92
|
-
"*": {
|
|
93
|
-
"index": [
|
|
94
|
-
"dist/index.d.ts"
|
|
95
|
-
]
|
|
96
|
-
}
|
|
97
90
|
}
|
|
98
91
|
}
|