@backstage/plugin-catalog-unprocessed-entities-common 0.0.12-next.0 → 0.0.12

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 CHANGED
@@ -1,5 +1,20 @@
1
1
  # @backstage/plugin-catalog-unprocessed-entities-common
2
2
 
3
+ ## 0.0.12
4
+
5
+ ### Patch Changes
6
+
7
+ - df4d646: Moved types, API and client to the common package, allowing both frontend and
8
+ backend plugins to use the `CatalogUnprocessedEntitiesClient`.
9
+
10
+ The following types, clients and interfaces have been deprecated and should be
11
+ imported from the `@backstage/plugin-catalog-unprocessed-entities-common` instead:
12
+ `CatalogUnprocessedEntitiesApi`, `CatalogUnprocessedEntitiesApiResponse`, `UnprocessedEntity`,
13
+ `UnprocessedEntityCache`, `UnprocessedEntityError`, `CatalogUnprocessedEntitiesClient`.
14
+
15
+ All those types, clients and interfaces are re-exported temporarily in the
16
+ `@backstage/plugin-catalog-unprocessed-entities` package until cleaned up.
17
+
3
18
  ## 0.0.12-next.0
4
19
 
5
20
  ### 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 { type CatalogUnprocessedEntitiesApi, type CatalogUnprocessedEntitiesApiResponse, CatalogUnprocessedEntitiesClient, type UnprocessedEntitiesRequestOptions, type UnprocessedEntity, type UnprocessedEntityCache, type UnprocessedEntityError, unprocessedEntitiesDeletePermission, unprocessedEntitiesPermissions };
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.12-next.0",
3
+ "version": "0.0.12",
4
4
  "description": "Common functionalities for the catalog-unprocessed-entities plugin",
5
5
  "backstage": {
6
6
  "role": "common-library",
@@ -37,12 +37,12 @@
37
37
  "test": "backstage-cli package test"
38
38
  },
39
39
  "dependencies": {
40
- "@backstage/catalog-model": "1.7.6",
41
- "@backstage/errors": "1.2.7",
42
- "@backstage/plugin-permission-common": "0.9.3"
40
+ "@backstage/catalog-model": "^1.7.6",
41
+ "@backstage/errors": "^1.2.7",
42
+ "@backstage/plugin-permission-common": "^0.9.3"
43
43
  },
44
44
  "devDependencies": {
45
- "@backstage/cli": "0.34.6-next.1"
45
+ "@backstage/cli": "^0.35.0"
46
46
  },
47
47
  "typesVersions": {
48
48
  "*": {