@backstage/plugin-catalog-import 0.13.14-next.1 → 0.13.15-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 +27 -0
- package/config.schema.json +28 -0
- package/dist/package.json.esm.js +1 -1
- package/package.json +16 -16
- package/config.d.ts +0 -40
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-import
|
|
2
2
|
|
|
3
|
+
## 0.13.15-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/plugin-catalog-react@3.2.0-next.0
|
|
9
|
+
- @backstage/frontend-plugin-api@0.17.3-next.0
|
|
10
|
+
- @backstage/catalog-client@1.16.1-next.0
|
|
11
|
+
- @backstage/core-components@0.18.12-next.0
|
|
12
|
+
- @backstage/core-plugin-api@1.12.8-next.0
|
|
13
|
+
- @backstage/integration-react@1.2.20-next.0
|
|
14
|
+
- @backstage/plugin-permission-react@0.5.3-next.0
|
|
15
|
+
|
|
16
|
+
## 0.13.14
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- Updated dependencies
|
|
21
|
+
- @backstage/catalog-client@1.16.0
|
|
22
|
+
- @backstage/plugin-catalog-react@3.1.0
|
|
23
|
+
- @backstage/core-components@0.18.11
|
|
24
|
+
- @backstage/integration@2.0.3
|
|
25
|
+
- @backstage/frontend-plugin-api@0.17.2
|
|
26
|
+
- @backstage/core-plugin-api@1.12.7
|
|
27
|
+
- @backstage/integration-react@1.2.19
|
|
28
|
+
- @backstage/plugin-permission-react@0.5.2
|
|
29
|
+
|
|
3
30
|
## 0.13.14-next.1
|
|
4
31
|
|
|
5
32
|
### Patch Changes
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"properties": {
|
|
5
|
+
"catalog": {
|
|
6
|
+
"type": "object",
|
|
7
|
+
"properties": {
|
|
8
|
+
"import": {
|
|
9
|
+
"type": "object",
|
|
10
|
+
"properties": {
|
|
11
|
+
"entityFilename": {
|
|
12
|
+
"type": "string",
|
|
13
|
+
"description": "Catalog entity descriptor filename, defaults to \"catalog-info.yaml\"",
|
|
14
|
+
"visibility": "frontend"
|
|
15
|
+
},
|
|
16
|
+
"pullRequestBranchName": {
|
|
17
|
+
"type": "string",
|
|
18
|
+
"description": "A branch name used in pull request when registering existing component via UI Valid git refname required, see: https://git-scm.com/docs/git-check-ref-format Defaults to \"backstage-integration\"",
|
|
19
|
+
"visibility": "frontend"
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
"description": "List of import flow specific options and attributes"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"description": "Configuration options for the catalog plugin."
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
}
|
package/dist/package.json.esm.js
CHANGED
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.15-next.0",
|
|
4
4
|
"description": "A Backstage plugin the helps you import entities into your catalog",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "frontend-plugin",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
},
|
|
55
55
|
"files": [
|
|
56
56
|
"dist",
|
|
57
|
-
"config.
|
|
57
|
+
"config.schema.json"
|
|
58
58
|
],
|
|
59
59
|
"scripts": {
|
|
60
60
|
"build": "backstage-cli package build",
|
|
@@ -66,18 +66,18 @@
|
|
|
66
66
|
"test": "backstage-cli package test"
|
|
67
67
|
},
|
|
68
68
|
"dependencies": {
|
|
69
|
-
"@backstage/catalog-client": "1.16.
|
|
69
|
+
"@backstage/catalog-client": "1.16.1-next.0",
|
|
70
70
|
"@backstage/catalog-model": "1.9.0",
|
|
71
71
|
"@backstage/config": "1.3.8",
|
|
72
|
-
"@backstage/core-components": "0.18.
|
|
73
|
-
"@backstage/core-plugin-api": "1.12.
|
|
72
|
+
"@backstage/core-components": "0.18.12-next.0",
|
|
73
|
+
"@backstage/core-plugin-api": "1.12.8-next.0",
|
|
74
74
|
"@backstage/errors": "1.3.1",
|
|
75
|
-
"@backstage/frontend-plugin-api": "0.17.
|
|
76
|
-
"@backstage/integration": "2.0.3
|
|
77
|
-
"@backstage/integration-react": "1.2.
|
|
75
|
+
"@backstage/frontend-plugin-api": "0.17.3-next.0",
|
|
76
|
+
"@backstage/integration": "2.0.3",
|
|
77
|
+
"@backstage/integration-react": "1.2.20-next.0",
|
|
78
78
|
"@backstage/plugin-catalog-common": "1.1.10",
|
|
79
|
-
"@backstage/plugin-catalog-react": "3.0
|
|
80
|
-
"@backstage/plugin-permission-react": "0.5.
|
|
79
|
+
"@backstage/plugin-catalog-react": "3.2.0-next.0",
|
|
80
|
+
"@backstage/plugin-permission-react": "0.5.3-next.0",
|
|
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",
|
|
@@ -91,11 +91,11 @@
|
|
|
91
91
|
"yaml": "^2.0.0"
|
|
92
92
|
},
|
|
93
93
|
"devDependencies": {
|
|
94
|
-
"@backstage/cli": "0.36.
|
|
95
|
-
"@backstage/core-app-api": "1.20.
|
|
96
|
-
"@backstage/dev-utils": "1.1.
|
|
97
|
-
"@backstage/plugin-catalog": "2.0.
|
|
98
|
-
"@backstage/test-utils": "1.7.
|
|
94
|
+
"@backstage/cli": "0.36.4-next.0",
|
|
95
|
+
"@backstage/core-app-api": "1.20.3-next.0",
|
|
96
|
+
"@backstage/dev-utils": "1.1.25-next.0",
|
|
97
|
+
"@backstage/plugin-catalog": "2.0.7-next.0",
|
|
98
|
+
"@backstage/test-utils": "1.7.20-next.0",
|
|
99
99
|
"@testing-library/dom": "^10.0.0",
|
|
100
100
|
"@testing-library/jest-dom": "^6.0.0",
|
|
101
101
|
"@testing-library/react": "^16.0.0",
|
|
@@ -117,6 +117,6 @@
|
|
|
117
117
|
"optional": true
|
|
118
118
|
}
|
|
119
119
|
},
|
|
120
|
-
"configSchema": "config.
|
|
120
|
+
"configSchema": "config.schema.json",
|
|
121
121
|
"module": "./dist/index.esm.js"
|
|
122
122
|
}
|
package/config.d.ts
DELETED
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright 2022 The Backstage Authors
|
|
3
|
-
*
|
|
4
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
-
* you may not use this file except in compliance with the License.
|
|
6
|
-
* You may obtain a copy of the License at
|
|
7
|
-
*
|
|
8
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
-
*
|
|
10
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
-
* See the License for the specific language governing permissions and
|
|
14
|
-
* limitations under the License.
|
|
15
|
-
*/
|
|
16
|
-
|
|
17
|
-
export interface Config {
|
|
18
|
-
/**
|
|
19
|
-
* Configuration options for the catalog plugin.
|
|
20
|
-
*/
|
|
21
|
-
catalog?: {
|
|
22
|
-
/**
|
|
23
|
-
* List of import flow specific options and attributes
|
|
24
|
-
*/
|
|
25
|
-
import?: {
|
|
26
|
-
/**
|
|
27
|
-
* Catalog entity descriptor filename, defaults to "catalog-info.yaml"
|
|
28
|
-
* @visibility frontend
|
|
29
|
-
*/
|
|
30
|
-
entityFilename?: string;
|
|
31
|
-
/**
|
|
32
|
-
* A branch name used in pull request when registering existing component via UI
|
|
33
|
-
* Valid git refname required, see: https://git-scm.com/docs/git-check-ref-format
|
|
34
|
-
* Defaults to "backstage-integration"
|
|
35
|
-
* @visibility frontend
|
|
36
|
-
*/
|
|
37
|
-
pullRequestBranchName?: string;
|
|
38
|
-
};
|
|
39
|
-
};
|
|
40
|
-
}
|