@backstage/plugin-catalog-unprocessed-entities-common 0.0.12-next.0 → 0.0.13-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/index.d.ts +2 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-unprocessed-entities-common
|
|
2
2
|
|
|
3
|
+
## 0.0.13-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/plugin-permission-common@0.9.5-next.0
|
|
9
|
+
- @backstage/catalog-model@1.7.6
|
|
10
|
+
- @backstage/errors@1.2.7
|
|
11
|
+
|
|
12
|
+
## 0.0.12
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- df4d646: Moved types, API and client to the common package, allowing both frontend and
|
|
17
|
+
backend plugins to use the `CatalogUnprocessedEntitiesClient`.
|
|
18
|
+
|
|
19
|
+
The following types, clients and interfaces have been deprecated and should be
|
|
20
|
+
imported from the `@backstage/plugin-catalog-unprocessed-entities-common` instead:
|
|
21
|
+
`CatalogUnprocessedEntitiesApi`, `CatalogUnprocessedEntitiesApiResponse`, `UnprocessedEntity`,
|
|
22
|
+
`UnprocessedEntityCache`, `UnprocessedEntityError`, `CatalogUnprocessedEntitiesClient`.
|
|
23
|
+
|
|
24
|
+
All those types, clients and interfaces are re-exported temporarily in the
|
|
25
|
+
`@backstage/plugin-catalog-unprocessed-entities` package until cleaned up.
|
|
26
|
+
|
|
3
27
|
## 0.0.12-next.0
|
|
4
28
|
|
|
5
29
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -115,4 +115,5 @@ declare const unprocessedEntitiesPermissions: {
|
|
|
115
115
|
unprocessedEntitiesDeletePermission: _backstage_plugin_permission_common.BasicPermission;
|
|
116
116
|
};
|
|
117
117
|
|
|
118
|
-
export {
|
|
118
|
+
export { CatalogUnprocessedEntitiesClient, unprocessedEntitiesDeletePermission, unprocessedEntitiesPermissions };
|
|
119
|
+
export type { CatalogUnprocessedEntitiesApi, CatalogUnprocessedEntitiesApiResponse, UnprocessedEntitiesRequestOptions, UnprocessedEntity, UnprocessedEntityCache, UnprocessedEntityError };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-unprocessed-entities-common",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.13-next.0",
|
|
4
4
|
"description": "Common functionalities for the catalog-unprocessed-entities plugin",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "common-library",
|
|
@@ -39,10 +39,10 @@
|
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"@backstage/catalog-model": "1.7.6",
|
|
41
41
|
"@backstage/errors": "1.2.7",
|
|
42
|
-
"@backstage/plugin-permission-common": "0.9.
|
|
42
|
+
"@backstage/plugin-permission-common": "0.9.5-next.0"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@backstage/cli": "0.
|
|
45
|
+
"@backstage/cli": "0.35.3-next.0"
|
|
46
46
|
},
|
|
47
47
|
"typesVersions": {
|
|
48
48
|
"*": {
|