@backstage-community/plugin-quay-backend 1.1.0 → 1.1.2

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,19 @@
1
1
  # @backstage-community/plugin-quay-backend
2
2
 
3
+ ## 1.1.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 088781b: Publish config.d.ts
8
+
9
+ ## 1.1.1
10
+
11
+ ### Patch Changes
12
+
13
+ - f84ad73: chore: remove homepage field from package.json
14
+ - Updated dependencies [f84ad73]
15
+ - @backstage-community/plugin-quay-common@1.7.1
16
+
3
17
  ## 1.1.0
4
18
 
5
19
  ### Minor Changes
package/config.d.ts ADDED
@@ -0,0 +1,30 @@
1
+ /*
2
+ * Copyright 2025 The Backstage Authors
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+ export interface Config {
17
+ /** Configurations for the Quay backend plugin */
18
+ quay: {
19
+ /**
20
+ * The api url of the Quay instance.
21
+ * @visibility backend
22
+ */
23
+ apiUrl: string;
24
+ /**
25
+ * The api token of the Quay instance.
26
+ * @visibility secret
27
+ */
28
+ apiKey?: string;
29
+ };
30
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage-community/plugin-quay-backend",
3
- "version": "1.1.0",
3
+ "version": "1.1.2",
4
4
  "main": "dist/index.cjs.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "license": "Apache-2.0",
@@ -37,7 +37,7 @@
37
37
  "postpack": "backstage-cli package postpack"
38
38
  },
39
39
  "dependencies": {
40
- "@backstage-community/plugin-quay-common": "^1.7.0",
40
+ "@backstage-community/plugin-quay-common": "^1.7.1",
41
41
  "@backstage/backend-defaults": "^0.8.1",
42
42
  "@backstage/backend-plugin-api": "^1.2.0",
43
43
  "@backstage/config": "^1.3.2",
@@ -54,10 +54,10 @@
54
54
  "supertest": "^6.2.4"
55
55
  },
56
56
  "files": [
57
- "dist"
57
+ "dist",
58
+ "config.d.ts"
58
59
  ],
59
60
  "configSchema": "config.d.ts",
60
- "homepage": "https://red.ht/rhdh",
61
61
  "bugs": "https://github.com/backstage/community-plugins/issues",
62
62
  "maintainers": [
63
63
  "@karthikjeeyar"