@pagerduty/backstage-plugin-backend 0.3.4-next.4 → 0.4.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/README.md +2 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -12,6 +12,7 @@ The PagerDuty backend plugin augments the capabilities of the [PagerDuty fronten
|
|
|
12
12
|
## Features
|
|
13
13
|
|
|
14
14
|
- **Scaffolder Action for creating services** This feature enables teams to create project templates that automatically generate a corresponding service in PagerDuty. These services come with a built-in integration to Backstage, which conveniently configures the frontend plugin for your service.
|
|
15
|
+
- **REST APIs** The backend is responsible for all requests to PagerDuty REST APIs. Centralizing these in the backend plugin allows us to only expose the information the frontend needs and therefore improve security and performance.
|
|
15
16
|
|
|
16
17
|
## Getting Started
|
|
17
18
|
|
|
@@ -24,7 +25,7 @@ The installation of the PagerDuty plugin for Backstage is done with *yarn* as al
|
|
|
24
25
|
To install this plugin run the following command from the Backstage root folder.
|
|
25
26
|
|
|
26
27
|
```bash
|
|
27
|
-
yarn add --cwd packages/backend @pagerduty/backstage-plugin-backend
|
|
28
|
+
yarn add --cwd packages/backend @pagerduty/backstage-plugin-backend @pagerduty/backstage-plugin-common
|
|
28
29
|
```
|
|
29
30
|
|
|
30
31
|
### Configuration
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pagerduty/backstage-plugin-backend",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"main": "dist/index.cjs.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -37,11 +37,11 @@
|
|
|
37
37
|
"zod": "^3.22.4"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|
|
40
|
-
"@pagerduty/backstage-plugin-common": "^0.0
|
|
40
|
+
"@pagerduty/backstage-plugin-common": "^0.1.0"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@backstage/cli": "^0.24.0",
|
|
44
|
-
"@pagerduty/backstage-plugin-common": "^0.0
|
|
44
|
+
"@pagerduty/backstage-plugin-common": "^0.1.0",
|
|
45
45
|
"@types/node": "^20.9.2",
|
|
46
46
|
"@types/supertest": "^2.0.12",
|
|
47
47
|
"@types/webpack-env": "1.18.4",
|