@backstage/plugin-catalog-import 0.12.3 → 0.12.4-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 +18 -0
- package/alpha/package.json +1 -1
- package/dist/alpha.d.ts +8 -2
- package/package.json +13 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-import
|
|
2
2
|
|
|
3
|
+
## 0.12.4-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/frontend-plugin-api@0.9.0-next.0
|
|
9
|
+
- @backstage/core-compat-api@0.3.1-next.0
|
|
10
|
+
- @backstage/core-components@0.15.1-next.0
|
|
11
|
+
- @backstage/core-plugin-api@1.10.0-next.0
|
|
12
|
+
- @backstage/plugin-catalog-react@1.13.1-next.0
|
|
13
|
+
- @backstage/catalog-client@1.7.0
|
|
14
|
+
- @backstage/catalog-model@1.7.0
|
|
15
|
+
- @backstage/config@1.2.0
|
|
16
|
+
- @backstage/errors@1.2.4
|
|
17
|
+
- @backstage/integration@1.15.0
|
|
18
|
+
- @backstage/integration-react@1.1.32-next.0
|
|
19
|
+
- @backstage/plugin-catalog-common@1.1.0
|
|
20
|
+
|
|
3
21
|
## 0.12.3
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
package/alpha/package.json
CHANGED
package/dist/alpha.d.ts
CHANGED
|
@@ -8,16 +8,17 @@ declare const _default: _backstage_frontend_plugin_api.FrontendPlugin<{
|
|
|
8
8
|
}, {}, {
|
|
9
9
|
"api:catalog-import": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
10
10
|
kind: "api";
|
|
11
|
-
namespace: undefined;
|
|
12
11
|
name: undefined;
|
|
13
12
|
config: {};
|
|
14
13
|
configInput: {};
|
|
15
14
|
output: _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<_backstage_core_plugin_api.AnyApiFactory, "core.api.factory", {}>;
|
|
16
15
|
inputs: {};
|
|
16
|
+
params: {
|
|
17
|
+
factory: _backstage_core_plugin_api.AnyApiFactory;
|
|
18
|
+
};
|
|
17
19
|
}>;
|
|
18
20
|
"page:catalog-import": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
19
21
|
kind: "page";
|
|
20
|
-
namespace: undefined;
|
|
21
22
|
name: undefined;
|
|
22
23
|
config: {
|
|
23
24
|
path: string | undefined;
|
|
@@ -29,6 +30,11 @@ declare const _default: _backstage_frontend_plugin_api.FrontendPlugin<{
|
|
|
29
30
|
optional: true;
|
|
30
31
|
}>;
|
|
31
32
|
inputs: {};
|
|
33
|
+
params: {
|
|
34
|
+
defaultPath: string;
|
|
35
|
+
loader: () => Promise<JSX.Element>;
|
|
36
|
+
routeRef?: _backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams> | undefined;
|
|
37
|
+
};
|
|
32
38
|
}>;
|
|
33
39
|
}>;
|
|
34
40
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-import",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.4-next.0",
|
|
4
4
|
"description": "A Backstage plugin the helps you import entities into your catalog",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "frontend-plugin",
|
|
@@ -30,6 +30,7 @@
|
|
|
30
30
|
"default": "./dist/index.esm.js"
|
|
31
31
|
},
|
|
32
32
|
"./alpha": {
|
|
33
|
+
"backstage": "@backstage/FrontendPlugin",
|
|
33
34
|
"import": "./dist/alpha.esm.js",
|
|
34
35
|
"types": "./dist/alpha.d.ts",
|
|
35
36
|
"default": "./dist/alpha.esm.js"
|
|
@@ -56,15 +57,15 @@
|
|
|
56
57
|
"@backstage/catalog-client": "^1.7.0",
|
|
57
58
|
"@backstage/catalog-model": "^1.7.0",
|
|
58
59
|
"@backstage/config": "^1.2.0",
|
|
59
|
-
"@backstage/core-compat-api": "^0.3.0",
|
|
60
|
-
"@backstage/core-components": "^0.15.0",
|
|
61
|
-
"@backstage/core-plugin-api": "^1.
|
|
60
|
+
"@backstage/core-compat-api": "^0.3.1-next.0",
|
|
61
|
+
"@backstage/core-components": "^0.15.1-next.0",
|
|
62
|
+
"@backstage/core-plugin-api": "^1.10.0-next.0",
|
|
62
63
|
"@backstage/errors": "^1.2.4",
|
|
63
|
-
"@backstage/frontend-plugin-api": "^0.
|
|
64
|
+
"@backstage/frontend-plugin-api": "^0.9.0-next.0",
|
|
64
65
|
"@backstage/integration": "^1.15.0",
|
|
65
|
-
"@backstage/integration-react": "^1.1.
|
|
66
|
+
"@backstage/integration-react": "^1.1.32-next.0",
|
|
66
67
|
"@backstage/plugin-catalog-common": "^1.1.0",
|
|
67
|
-
"@backstage/plugin-catalog-react": "^1.13.0",
|
|
68
|
+
"@backstage/plugin-catalog-react": "^1.13.1-next.0",
|
|
68
69
|
"@material-ui/core": "^4.12.2",
|
|
69
70
|
"@material-ui/icons": "^4.9.1",
|
|
70
71
|
"@material-ui/lab": "4.0.0-alpha.61",
|
|
@@ -78,11 +79,11 @@
|
|
|
78
79
|
"yaml": "^2.0.0"
|
|
79
80
|
},
|
|
80
81
|
"devDependencies": {
|
|
81
|
-
"@backstage/cli": "^0.
|
|
82
|
-
"@backstage/core-app-api": "^1.15.0",
|
|
83
|
-
"@backstage/dev-utils": "^1.1.0",
|
|
84
|
-
"@backstage/plugin-catalog": "^1.
|
|
85
|
-
"@backstage/test-utils": "^1.6.0",
|
|
82
|
+
"@backstage/cli": "^0.28.0-next.0",
|
|
83
|
+
"@backstage/core-app-api": "^1.15.1-next.0",
|
|
84
|
+
"@backstage/dev-utils": "^1.1.1-next.0",
|
|
85
|
+
"@backstage/plugin-catalog": "^1.24.0-next.0",
|
|
86
|
+
"@backstage/test-utils": "^1.6.1-next.0",
|
|
86
87
|
"@testing-library/dom": "^10.0.0",
|
|
87
88
|
"@testing-library/jest-dom": "^6.0.0",
|
|
88
89
|
"@testing-library/react": "^16.0.0",
|