@spacelift-io/backstage-integration-backend 0.1.2 → 0.1.4

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -30,7 +30,7 @@ To use this plugin, you need to configure it in your `app-config.yaml`. Add the
30
30
 
31
31
  ```yaml
32
32
  spacelift:
33
- hostUrl: 'https://<your-subdomain>.app.spacelift.io' # Your Spacelift instance URL
33
+ hostUrl: '<your-subdomain>.app.spacelift.io' # Your Spacelift instance URL (WITHOUT https://)
34
34
  apiKey: ${SPACELIFT_API_KEY} # Your Spacelift API Key ID
35
35
  apiSecret: ${SPACELIFT_API_SECRET} # Your Spacelift API Key Secret
36
36
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spacelift-io/backstage-integration-backend",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "description": "Backstage plugin for integrating Spacelift.io with Backstage",
5
5
  "keywords": [
6
6
  "backstage-plugin",
@@ -50,6 +50,7 @@
50
50
  "@backstage/plugin-catalog-node": "^1.16.3",
51
51
  "express": "^4.17.1",
52
52
  "express-promise-router": "^4.1.0",
53
+ "graphql": "^16.8.1",
53
54
  "graphql-request": "^7.1.2",
54
55
  "zod": "^3.23.8"
55
56
  },
@@ -59,7 +60,6 @@
59
60
  "@types/express": "^4.17.6",
60
61
  "@types/supertest": "^2.0.12",
61
62
  "eslint-plugin-react-hooks": "^4.6.2",
62
- "graphql": "^16.8.1",
63
63
  "supertest": "^6.2.4",
64
64
  "typescript": "~5.4.5"
65
65
  },