@backstage/plugin-catalog-import 0.13.8-next.0 → 0.13.9-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 +24 -0
- package/dist/alpha.d.ts +3 -4
- package/dist/index.d.ts +4 -2
- package/dist/package.json.esm.js +4 -4
- package/package.json +13 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-import
|
|
2
2
|
|
|
3
|
+
## 0.13.9-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/integration@1.19.2-next.0
|
|
9
|
+
- @backstage/integration-react@1.2.14-next.0
|
|
10
|
+
- @backstage/plugin-catalog-react@1.21.5-next.0
|
|
11
|
+
- @backstage/frontend-plugin-api@0.13.2
|
|
12
|
+
|
|
13
|
+
## 0.13.8
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- d02db50: Remove unnecessary use of `compatWrapper` and `convertLegacyRouteRef`(s) for the new frontend system.
|
|
18
|
+
- Updated dependencies
|
|
19
|
+
- @backstage/integration@1.19.0
|
|
20
|
+
- @backstage/frontend-plugin-api@0.13.2
|
|
21
|
+
- @backstage/core-components@0.18.4
|
|
22
|
+
- @backstage/plugin-catalog-react@1.21.4
|
|
23
|
+
- @backstage/core-plugin-api@1.12.1
|
|
24
|
+
- @backstage/integration-react@1.2.13
|
|
25
|
+
- @backstage/plugin-permission-react@0.4.39
|
|
26
|
+
|
|
3
27
|
## 0.13.8-next.0
|
|
4
28
|
|
|
5
29
|
### Patch Changes
|
package/dist/alpha.d.ts
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
2
|
import * as _backstage_frontend_plugin_api from '@backstage/frontend-plugin-api';
|
|
3
3
|
import * as _backstage_core_plugin_api from '@backstage/core-plugin-api';
|
|
4
|
-
import * as _backstage_core_plugin_api_alpha from '@backstage/core-plugin-api/alpha';
|
|
5
4
|
|
|
6
5
|
/** @alpha */
|
|
7
|
-
declare const catalogImportTranslationRef:
|
|
6
|
+
declare const catalogImportTranslationRef: _backstage_frontend_plugin_api.TranslationRef<"catalog-import", {
|
|
8
7
|
readonly "buttons.back": "Back";
|
|
9
8
|
readonly "defaultImportPage.headerTitle": "Register an existing component";
|
|
10
9
|
readonly "defaultImportPage.contentHeaderTitle": "Start tracking your component in {{appTitle}}";
|
|
@@ -82,9 +81,9 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
|
|
|
82
81
|
name: undefined;
|
|
83
82
|
config: {};
|
|
84
83
|
configInput: {};
|
|
85
|
-
output: _backstage_frontend_plugin_api.ExtensionDataRef<
|
|
84
|
+
output: _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_frontend_plugin_api.AnyApiFactory, "core.api.factory", {}>;
|
|
86
85
|
inputs: {};
|
|
87
|
-
params: <TApi, TImpl extends TApi, TDeps extends { [name in string]: unknown; }>(params:
|
|
86
|
+
params: <TApi, TImpl extends TApi, TDeps extends { [name in string]: unknown; }>(params: _backstage_frontend_plugin_api.ApiFactory<TApi, TImpl, TDeps>) => _backstage_frontend_plugin_api.ExtensionBlueprintParams<_backstage_frontend_plugin_api.AnyApiFactory>;
|
|
88
87
|
}>;
|
|
89
88
|
"page:catalog-import": _backstage_frontend_plugin_api.OverridableExtensionDefinition<{
|
|
90
89
|
kind: "page";
|
package/dist/index.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ import { ReactElement, ComponentProps, ReactNode } from 'react';
|
|
|
6
6
|
import { InfoCardVariants } from '@backstage/core-components';
|
|
7
7
|
import { TranslationFunction } from '@backstage/core-plugin-api/alpha';
|
|
8
8
|
import { catalogImportTranslationRef } from '@backstage/plugin-catalog-import/alpha';
|
|
9
|
+
import * as _backstage_frontend_plugin_api from '@backstage/frontend-plugin-api';
|
|
9
10
|
import { TextFieldProps } from '@material-ui/core/TextField/TextField';
|
|
10
11
|
import { FieldErrors, Controller, UseFormProps, SubmitHandler, UseFormReturn, NestedValue } from 'react-hook-form';
|
|
11
12
|
import { CatalogApi } from '@backstage/catalog-client';
|
|
@@ -84,7 +85,7 @@ type PartialEntity = RecursivePartial<Entity>;
|
|
|
84
85
|
*
|
|
85
86
|
* @public
|
|
86
87
|
*/
|
|
87
|
-
declare const catalogImportApiRef:
|
|
88
|
+
declare const catalogImportApiRef: _backstage_frontend_plugin_api.ApiRef<CatalogImportApi>;
|
|
88
89
|
/**
|
|
89
90
|
* Result of the analysis.
|
|
90
91
|
*
|
|
@@ -468,4 +469,5 @@ interface StepPrepareCreatePullRequestProps {
|
|
|
468
469
|
*/
|
|
469
470
|
declare const StepPrepareCreatePullRequest: (props: StepPrepareCreatePullRequestProps) => react_jsx_runtime.JSX.Element;
|
|
470
471
|
|
|
471
|
-
export {
|
|
472
|
+
export { AutocompleteTextField, CatalogImportClient, CatalogImportPage, DefaultImportPage, EntityListComponent, ImportInfoCard, ImportStepper, PreparePullRequestForm, PreviewCatalogInfoComponent, PreviewPullRequestComponent, StepInitAnalyzeUrl, StepPrepareCreatePullRequest, catalogImportApiRef, catalogImportPlugin, defaultGenerateStepper, catalogImportPlugin as plugin };
|
|
473
|
+
export type { AnalyzeResult, AutocompleteTextFieldProps, CatalogImportApi, EntityListComponentProps, ImportFlows, ImportInfoCardProps, ImportState, ImportStepperProps, PreparePullRequestFormProps, PrepareResult, PreviewCatalogInfoComponentProps, PreviewPullRequestComponentProps, StepInitAnalyzeUrlProps, StepPrepareCreatePullRequestProps, UnpackNestedValue };
|
package/dist/package.json.esm.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
var name = "@backstage/plugin-catalog-import";
|
|
2
|
-
var version = "0.13.
|
|
2
|
+
var version = "0.13.9-next.0";
|
|
3
3
|
var description = "A Backstage plugin the helps you import entities into your catalog";
|
|
4
4
|
var backstage = {
|
|
5
5
|
role: "frontend-plugin",
|
|
@@ -22,7 +22,7 @@ var repository = {
|
|
|
22
22
|
};
|
|
23
23
|
var license = "Apache-2.0";
|
|
24
24
|
var sideEffects = false;
|
|
25
|
-
var exports = {
|
|
25
|
+
var exports$1 = {
|
|
26
26
|
".": "./src/index.ts",
|
|
27
27
|
"./alpha": "./src/alpha.tsx",
|
|
28
28
|
"./package.json": "./package.json"
|
|
@@ -115,7 +115,7 @@ var _package = {
|
|
|
115
115
|
repository: repository,
|
|
116
116
|
license: license,
|
|
117
117
|
sideEffects: sideEffects,
|
|
118
|
-
exports: exports,
|
|
118
|
+
exports: exports$1,
|
|
119
119
|
main: main,
|
|
120
120
|
types: types,
|
|
121
121
|
typesVersions: typesVersions,
|
|
@@ -128,5 +128,5 @@ var _package = {
|
|
|
128
128
|
configSchema: configSchema
|
|
129
129
|
};
|
|
130
130
|
|
|
131
|
-
export { backstage, configSchema, _package as default, dependencies, description, devDependencies, exports, files, homepage, keywords, license, main, name, peerDependencies, peerDependenciesMeta, publishConfig, repository, scripts, sideEffects, types, typesVersions, version };
|
|
131
|
+
export { backstage, configSchema, _package as default, dependencies, description, devDependencies, exports$1 as exports, files, homepage, keywords, license, main, name, peerDependencies, peerDependenciesMeta, publishConfig, repository, scripts, sideEffects, types, typesVersions, version };
|
|
132
132
|
//# sourceMappingURL=package.json.esm.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-import",
|
|
3
|
-
"version": "0.13.
|
|
3
|
+
"version": "0.13.9-next.0",
|
|
4
4
|
"description": "A Backstage plugin the helps you import entities into your catalog",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "frontend-plugin",
|
|
@@ -69,15 +69,15 @@
|
|
|
69
69
|
"@backstage/catalog-client": "1.12.1",
|
|
70
70
|
"@backstage/catalog-model": "1.7.6",
|
|
71
71
|
"@backstage/config": "1.3.6",
|
|
72
|
-
"@backstage/core-components": "0.18.4
|
|
73
|
-
"@backstage/core-plugin-api": "1.12.1
|
|
72
|
+
"@backstage/core-components": "0.18.4",
|
|
73
|
+
"@backstage/core-plugin-api": "1.12.1",
|
|
74
74
|
"@backstage/errors": "1.2.7",
|
|
75
|
-
"@backstage/frontend-plugin-api": "0.13.2
|
|
76
|
-
"@backstage/integration": "1.
|
|
77
|
-
"@backstage/integration-react": "1.2.
|
|
75
|
+
"@backstage/frontend-plugin-api": "0.13.2",
|
|
76
|
+
"@backstage/integration": "1.19.2-next.0",
|
|
77
|
+
"@backstage/integration-react": "1.2.14-next.0",
|
|
78
78
|
"@backstage/plugin-catalog-common": "1.1.7",
|
|
79
|
-
"@backstage/plugin-catalog-react": "1.21.
|
|
80
|
-
"@backstage/plugin-permission-react": "0.4.39
|
|
79
|
+
"@backstage/plugin-catalog-react": "1.21.5-next.0",
|
|
80
|
+
"@backstage/plugin-permission-react": "0.4.39",
|
|
81
81
|
"@material-ui/core": "^4.12.2",
|
|
82
82
|
"@material-ui/icons": "^4.9.1",
|
|
83
83
|
"@material-ui/lab": "4.0.0-alpha.61",
|
|
@@ -90,11 +90,11 @@
|
|
|
90
90
|
"yaml": "^2.0.0"
|
|
91
91
|
},
|
|
92
92
|
"devDependencies": {
|
|
93
|
-
"@backstage/cli": "0.
|
|
94
|
-
"@backstage/core-app-api": "1.19.3
|
|
95
|
-
"@backstage/dev-utils": "1.1.
|
|
96
|
-
"@backstage/plugin-catalog": "1.32.
|
|
97
|
-
"@backstage/test-utils": "1.7.14
|
|
93
|
+
"@backstage/cli": "0.35.2-next.1",
|
|
94
|
+
"@backstage/core-app-api": "1.19.3",
|
|
95
|
+
"@backstage/dev-utils": "1.1.19-next.1",
|
|
96
|
+
"@backstage/plugin-catalog": "1.32.2-next.0",
|
|
97
|
+
"@backstage/test-utils": "1.7.14",
|
|
98
98
|
"@testing-library/dom": "^10.0.0",
|
|
99
99
|
"@testing-library/jest-dom": "^6.0.0",
|
|
100
100
|
"@testing-library/react": "^16.0.0",
|