@backstage/plugin-catalog-import 0.12.6 → 0.12.8-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/dist/alpha.d.ts +11 -11
- package/dist/alpha.esm.js +3 -3
- package/dist/components/ImportStepper/ImportStepper.esm.js +1 -1
- package/dist/plugin.esm.js +2 -2
- package/package.json +18 -18
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-import
|
|
2
2
|
|
|
3
|
+
## 0.12.8-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/integration@1.16.0-next.0
|
|
9
|
+
- @backstage/plugin-catalog-react@1.14.3-next.0
|
|
10
|
+
- @backstage/frontend-plugin-api@0.9.3-next.0
|
|
11
|
+
- @backstage/catalog-client@1.8.1-next.0
|
|
12
|
+
- @backstage/catalog-model@1.7.1
|
|
13
|
+
- @backstage/config@1.3.0
|
|
14
|
+
- @backstage/core-compat-api@0.3.4-next.0
|
|
15
|
+
- @backstage/core-components@0.16.2-next.0
|
|
16
|
+
- @backstage/core-plugin-api@1.10.1
|
|
17
|
+
- @backstage/errors@1.2.5
|
|
18
|
+
- @backstage/integration-react@1.2.2-next.0
|
|
19
|
+
- @backstage/plugin-catalog-common@1.1.1
|
|
20
|
+
|
|
3
21
|
## 0.12.6
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
package/dist/alpha.d.ts
CHANGED
|
@@ -6,17 +6,6 @@ import React__default from 'react';
|
|
|
6
6
|
declare const _default: _backstage_frontend_plugin_api.FrontendPlugin<{
|
|
7
7
|
importPage: _backstage_frontend_plugin_api.RouteRef<undefined>;
|
|
8
8
|
}, {}, {
|
|
9
|
-
"api:catalog-import": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
10
|
-
kind: "api";
|
|
11
|
-
name: undefined;
|
|
12
|
-
config: {};
|
|
13
|
-
configInput: {};
|
|
14
|
-
output: _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<_backstage_core_plugin_api.AnyApiFactory, "core.api.factory", {}>;
|
|
15
|
-
inputs: {};
|
|
16
|
-
params: {
|
|
17
|
-
factory: _backstage_core_plugin_api.AnyApiFactory;
|
|
18
|
-
};
|
|
19
|
-
}>;
|
|
20
9
|
"page:catalog-import": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
21
10
|
kind: "page";
|
|
22
11
|
name: undefined;
|
|
@@ -36,6 +25,17 @@ declare const _default: _backstage_frontend_plugin_api.FrontendPlugin<{
|
|
|
36
25
|
routeRef?: _backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams> | undefined;
|
|
37
26
|
};
|
|
38
27
|
}>;
|
|
28
|
+
"api:catalog-import": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
29
|
+
kind: "api";
|
|
30
|
+
name: undefined;
|
|
31
|
+
config: {};
|
|
32
|
+
configInput: {};
|
|
33
|
+
output: _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<_backstage_core_plugin_api.AnyApiFactory, "core.api.factory", {}>;
|
|
34
|
+
inputs: {};
|
|
35
|
+
params: {
|
|
36
|
+
factory: _backstage_core_plugin_api.AnyApiFactory;
|
|
37
|
+
};
|
|
38
|
+
}>;
|
|
39
39
|
}>;
|
|
40
40
|
|
|
41
41
|
export { _default as default };
|
package/dist/alpha.esm.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { createApiFactory,
|
|
2
|
-
import {
|
|
1
|
+
import { createApiFactory, discoveryApiRef, fetchApiRef, configApiRef } from '@backstage/core-plugin-api';
|
|
2
|
+
import { convertLegacyRouteRef, compatWrapper } from '@backstage/core-compat-api';
|
|
3
3
|
import { PageBlueprint, ApiBlueprint, createFrontendPlugin } from '@backstage/frontend-plugin-api';
|
|
4
|
-
import {
|
|
4
|
+
import { scmAuthApiRef, scmIntegrationsApiRef } from '@backstage/integration-react';
|
|
5
5
|
import React from 'react';
|
|
6
6
|
import { catalogImportApiRef } from './api/CatalogImportApi.esm.js';
|
|
7
7
|
import { CatalogImportClient } from './api/CatalogImportClient.esm.js';
|
|
@@ -11,7 +11,7 @@ import 'git-url-parse';
|
|
|
11
11
|
import '@octokit/rest';
|
|
12
12
|
import 'js-base64';
|
|
13
13
|
import { useImportState } from '../useImportState.esm.js';
|
|
14
|
-
import {
|
|
14
|
+
import { defaultStepper, defaultGenerateStepper } from './defaults.esm.js';
|
|
15
15
|
|
|
16
16
|
const useStyles = makeStyles(() => ({
|
|
17
17
|
stepperRoot: {
|
package/dist/plugin.esm.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { createRouteRef, createPlugin, createApiFactory,
|
|
2
|
-
import {
|
|
1
|
+
import { createRouteRef, createPlugin, createApiFactory, discoveryApiRef, fetchApiRef, configApiRef, createRoutableExtension } from '@backstage/core-plugin-api';
|
|
2
|
+
import { scmAuthApiRef, scmIntegrationsApiRef } from '@backstage/integration-react';
|
|
3
3
|
import { catalogApiRef } from '@backstage/plugin-catalog-react';
|
|
4
4
|
import { catalogImportApiRef } from './api/CatalogImportApi.esm.js';
|
|
5
5
|
import { CatalogImportClient } from './api/CatalogImportClient.esm.js';
|
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.8-next.0",
|
|
4
4
|
"description": "A Backstage plugin the helps you import entities into your catalog",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "frontend-plugin",
|
|
@@ -63,18 +63,18 @@
|
|
|
63
63
|
"test": "backstage-cli package test"
|
|
64
64
|
},
|
|
65
65
|
"dependencies": {
|
|
66
|
-
"@backstage/catalog-client": "
|
|
67
|
-
"@backstage/catalog-model": "
|
|
68
|
-
"@backstage/config": "
|
|
69
|
-
"@backstage/core-compat-api": "
|
|
70
|
-
"@backstage/core-components": "
|
|
71
|
-
"@backstage/core-plugin-api": "
|
|
72
|
-
"@backstage/errors": "
|
|
73
|
-
"@backstage/frontend-plugin-api": "
|
|
74
|
-
"@backstage/integration": "
|
|
75
|
-
"@backstage/integration-react": "
|
|
76
|
-
"@backstage/plugin-catalog-common": "
|
|
77
|
-
"@backstage/plugin-catalog-react": "
|
|
66
|
+
"@backstage/catalog-client": "1.8.1-next.0",
|
|
67
|
+
"@backstage/catalog-model": "1.7.1",
|
|
68
|
+
"@backstage/config": "1.3.0",
|
|
69
|
+
"@backstage/core-compat-api": "0.3.4-next.0",
|
|
70
|
+
"@backstage/core-components": "0.16.2-next.0",
|
|
71
|
+
"@backstage/core-plugin-api": "1.10.1",
|
|
72
|
+
"@backstage/errors": "1.2.5",
|
|
73
|
+
"@backstage/frontend-plugin-api": "0.9.3-next.0",
|
|
74
|
+
"@backstage/integration": "1.16.0-next.0",
|
|
75
|
+
"@backstage/integration-react": "1.2.2-next.0",
|
|
76
|
+
"@backstage/plugin-catalog-common": "1.1.1",
|
|
77
|
+
"@backstage/plugin-catalog-react": "1.14.3-next.0",
|
|
78
78
|
"@material-ui/core": "^4.12.2",
|
|
79
79
|
"@material-ui/icons": "^4.9.1",
|
|
80
80
|
"@material-ui/lab": "4.0.0-alpha.61",
|
|
@@ -87,11 +87,11 @@
|
|
|
87
87
|
"yaml": "^2.0.0"
|
|
88
88
|
},
|
|
89
89
|
"devDependencies": {
|
|
90
|
-
"@backstage/cli": "
|
|
91
|
-
"@backstage/core-app-api": "
|
|
92
|
-
"@backstage/dev-utils": "
|
|
93
|
-
"@backstage/plugin-catalog": "
|
|
94
|
-
"@backstage/test-utils": "
|
|
90
|
+
"@backstage/cli": "0.29.3-next.0",
|
|
91
|
+
"@backstage/core-app-api": "1.15.3-next.0",
|
|
92
|
+
"@backstage/dev-utils": "1.1.5-next.0",
|
|
93
|
+
"@backstage/plugin-catalog": "1.25.2-next.0",
|
|
94
|
+
"@backstage/test-utils": "1.7.3-next.0",
|
|
95
95
|
"@testing-library/dom": "^10.0.0",
|
|
96
96
|
"@testing-library/jest-dom": "^6.0.0",
|
|
97
97
|
"@testing-library/react": "^16.0.0",
|