catalog-common: mark permission-related exports as alpha

Marks all strictly permission-related exports in catalog-common as
alpha.

Signed-off-by: Mike Lewis <mtlewis@users.noreply.github.com>
This commit is contained in:
Mike Lewis
2022-03-01 13:07:15 +00:00
parent 2760cc488b
commit 81273e95cf
4 changed files with 37 additions and 19 deletions
+14
View File
@@ -0,0 +1,14 @@
---
'@backstage/plugin-catalog-common': minor
---
Mark permission-related exports as alpha. This means that the exports below should now be imported from `@backstage/plugin-catalog-common/alpha` instead of `@backstage/plugin-catalog-common`.
- `RESOURCE_TYPE_CATALOG_ENTITY`
- `catalogEntityReadPermission`
- `catalogEntityCreatePermission`
- `catalogEntityDeletePermission`
- `catalogEntityRefreshPermission`
- `catalogLocationReadPermission`
- `catalogLocationCreatePermission`
- `catalogLocationDeletePermission`
+8 -8
View File
@@ -5,27 +5,27 @@
```ts
import { Permission } from '@backstage/plugin-permission-common';
// @public
// @alpha
export const catalogEntityCreatePermission: Permission;
// @public
// @alpha
export const catalogEntityDeletePermission: Permission;
// @public
// @alpha
export const catalogEntityReadPermission: Permission;
// @public
// @alpha
export const catalogEntityRefreshPermission: Permission;
// @public
// @alpha
export const catalogLocationCreatePermission: Permission;
// @public
// @alpha
export const catalogLocationDeletePermission: Permission;
// @public
// @alpha
export const catalogLocationReadPermission: Permission;
// @public (undocumented)
// @alpha
export const RESOURCE_TYPE_CATALOG_ENTITY = 'catalog-entity';
```
+5 -3
View File
@@ -10,7 +10,8 @@
"access": "public",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts"
"types": "dist/index.d.ts",
"alphaTypes": "dist/index.alpha.d.ts"
},
"backstage": {
"role": "common-library"
@@ -25,7 +26,7 @@
"backstage"
],
"scripts": {
"build": "backstage-cli package build",
"build": "backstage-cli package build --experimental-type-build",
"lint": "backstage-cli package lint",
"test": "backstage-cli package test",
"prepack": "backstage-cli package prepack",
@@ -39,6 +40,7 @@
"@backstage/cli": "^0.14.0"
},
"files": [
"dist"
"dist",
"alpha"
]
}
+10 -8
View File
@@ -17,8 +17,10 @@
import { Permission } from '@backstage/plugin-permission-common';
/**
* Permission resource type which corresponds to catalog entities.
*
* {@link https://backstage.io/docs/features/software-catalog/software-catalog-overview}
* @public
* @alpha
*/
export const RESOURCE_TYPE_CATALOG_ENTITY = 'catalog-entity';
@@ -28,7 +30,7 @@ export const RESOURCE_TYPE_CATALOG_ENTITY = 'catalog-entity';
*
* If this permission is not authorized, it will appear that the entity does not
* exist in the catalog — both in the frontend and in API responses.
* @public
* @alpha
*/
export const catalogEntityReadPermission: Permission = {
name: 'catalog.entity.read',
@@ -42,7 +44,7 @@ export const catalogEntityReadPermission: Permission = {
* This permission is used to authorize actions that involve creating a new
* catalog entity. This includes registering an existing component into the
* catalog.
* @public
* @alpha
*/
export const catalogEntityCreatePermission: Permission = {
name: 'catalog.entity.create',
@@ -55,7 +57,7 @@ export const catalogEntityCreatePermission: Permission = {
/**
* This permission is used to designate actions that involve removing one or
* more entities from the catalog.
* @public
* @alpha
*/
export const catalogEntityDeletePermission: Permission = {
name: 'catalog.entity.delete',
@@ -68,7 +70,7 @@ export const catalogEntityDeletePermission: Permission = {
/**
* This permission is used to designate refreshing one or more entities from the
* catalog.
* @public
* @alpha
*/
export const catalogEntityRefreshPermission: Permission = {
name: 'catalog.entity.refresh',
@@ -84,7 +86,7 @@ export const catalogEntityRefreshPermission: Permission = {
*
* If this permission is not authorized, it will appear that the location does
* not exist in the catalog — both in the frontend and in API responses.
* @public
* @alpha
*/
export const catalogLocationReadPermission: Permission = {
name: 'catalog.location.read',
@@ -96,7 +98,7 @@ export const catalogLocationReadPermission: Permission = {
/**
* This permission is used to designate actions that involve creating catalog
* locations.
* @public
* @alpha
*/
export const catalogLocationCreatePermission: Permission = {
name: 'catalog.location.create',
@@ -108,7 +110,7 @@ export const catalogLocationCreatePermission: Permission = {
/**
* This permission is used to designate actions that involve deleting locations
* from the catalog.
* @public
* @alpha
*/
export const catalogLocationDeletePermission: Permission = {
name: 'catalog.location.delete',