@backstage/plugin-catalog-import 0.12.2 → 0.12.3-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 +19 -0
- package/alpha/package.json +1 -1
- package/dist/alpha.d.ts +15 -7
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-import
|
|
2
2
|
|
|
3
|
+
## 0.12.3-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- fec8b57: Updated exports to use the new type parameters for extensions and extension blueprints.
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/frontend-plugin-api@0.8.0-next.0
|
|
10
|
+
- @backstage/core-compat-api@0.2.9-next.0
|
|
11
|
+
- @backstage/plugin-catalog-react@1.12.4-next.0
|
|
12
|
+
- @backstage/catalog-client@1.6.6
|
|
13
|
+
- @backstage/catalog-model@1.6.0
|
|
14
|
+
- @backstage/config@1.2.0
|
|
15
|
+
- @backstage/core-components@0.14.10
|
|
16
|
+
- @backstage/core-plugin-api@1.9.3
|
|
17
|
+
- @backstage/errors@1.2.4
|
|
18
|
+
- @backstage/integration@1.14.0
|
|
19
|
+
- @backstage/integration-react@1.1.30
|
|
20
|
+
- @backstage/plugin-catalog-common@1.0.26
|
|
21
|
+
|
|
3
22
|
## 0.12.2
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
package/alpha/package.json
CHANGED
package/dist/alpha.d.ts
CHANGED
|
@@ -6,21 +6,29 @@ import React__default from 'react';
|
|
|
6
6
|
declare const _default: _backstage_frontend_plugin_api.BackstagePlugin<{
|
|
7
7
|
importPage: _backstage_frontend_plugin_api.RouteRef<undefined>;
|
|
8
8
|
}, {}, {
|
|
9
|
-
"api:catalog-import": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
9
|
+
"api:catalog-import": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
10
10
|
kind: "api";
|
|
11
11
|
namespace: undefined;
|
|
12
12
|
name: undefined;
|
|
13
|
+
config: {};
|
|
14
|
+
configInput: {};
|
|
15
|
+
output: _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<_backstage_core_plugin_api.AnyApiFactory, "core.api.factory", {}>;
|
|
16
|
+
inputs: {};
|
|
13
17
|
}>;
|
|
14
18
|
"page:catalog-import": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
15
|
-
path: string | undefined;
|
|
16
|
-
}, {
|
|
17
|
-
path?: string | undefined;
|
|
18
|
-
}, _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<React__default.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<string, "core.routing.path", {}> | _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<_backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams>, "core.routing.ref", {
|
|
19
|
-
optional: true;
|
|
20
|
-
}>, {}, {
|
|
21
19
|
kind: "page";
|
|
22
20
|
namespace: undefined;
|
|
23
21
|
name: undefined;
|
|
22
|
+
config: {
|
|
23
|
+
path: string | undefined;
|
|
24
|
+
};
|
|
25
|
+
configInput: {
|
|
26
|
+
path?: string | undefined;
|
|
27
|
+
};
|
|
28
|
+
output: _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<React__default.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<string, "core.routing.path", {}> | _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<_backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams>, "core.routing.ref", {
|
|
29
|
+
optional: true;
|
|
30
|
+
}>;
|
|
31
|
+
inputs: {};
|
|
24
32
|
}>;
|
|
25
33
|
}>;
|
|
26
34
|
|
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.3-next.0",
|
|
4
4
|
"description": "A Backstage plugin the helps you import entities into your catalog",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "frontend-plugin",
|
|
@@ -56,15 +56,15 @@
|
|
|
56
56
|
"@backstage/catalog-client": "^1.6.6",
|
|
57
57
|
"@backstage/catalog-model": "^1.6.0",
|
|
58
58
|
"@backstage/config": "^1.2.0",
|
|
59
|
-
"@backstage/core-compat-api": "^0.2.
|
|
59
|
+
"@backstage/core-compat-api": "^0.2.9-next.0",
|
|
60
60
|
"@backstage/core-components": "^0.14.10",
|
|
61
61
|
"@backstage/core-plugin-api": "^1.9.3",
|
|
62
62
|
"@backstage/errors": "^1.2.4",
|
|
63
|
-
"@backstage/frontend-plugin-api": "^0.
|
|
63
|
+
"@backstage/frontend-plugin-api": "^0.8.0-next.0",
|
|
64
64
|
"@backstage/integration": "^1.14.0",
|
|
65
65
|
"@backstage/integration-react": "^1.1.30",
|
|
66
66
|
"@backstage/plugin-catalog-common": "^1.0.26",
|
|
67
|
-
"@backstage/plugin-catalog-react": "^1.12.
|
|
67
|
+
"@backstage/plugin-catalog-react": "^1.12.4-next.0",
|
|
68
68
|
"@material-ui/core": "^4.12.2",
|
|
69
69
|
"@material-ui/icons": "^4.9.1",
|
|
70
70
|
"@material-ui/lab": "4.0.0-alpha.61",
|
|
@@ -78,11 +78,11 @@
|
|
|
78
78
|
"yaml": "^2.0.0"
|
|
79
79
|
},
|
|
80
80
|
"devDependencies": {
|
|
81
|
-
"@backstage/cli": "^0.27.0",
|
|
81
|
+
"@backstage/cli": "^0.27.1-next.0",
|
|
82
82
|
"@backstage/core-app-api": "^1.14.2",
|
|
83
|
-
"@backstage/dev-utils": "^1.0.
|
|
84
|
-
"@backstage/plugin-catalog": "^1.22.0",
|
|
85
|
-
"@backstage/test-utils": "^1.
|
|
83
|
+
"@backstage/dev-utils": "^1.0.38-next.0",
|
|
84
|
+
"@backstage/plugin-catalog": "^1.22.1-next.0",
|
|
85
|
+
"@backstage/test-utils": "^1.6.0-next.0",
|
|
86
86
|
"@testing-library/dom": "^10.0.0",
|
|
87
87
|
"@testing-library/jest-dom": "^6.0.0",
|
|
88
88
|
"@testing-library/react": "^15.0.0",
|