@backstage-community/plugin-ilert 0.22.0 → 0.23.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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @backstage-community/plugin-ilert
2
2
 
3
+ ## 0.23.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 74f4e57: Backstage version bump to v1.53.0
8
+
3
9
  ## 0.22.0
4
10
 
5
11
  ### Minor Changes
@@ -0,0 +1,24 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "type": "object",
4
+ "properties": {
5
+ "ilert": {
6
+ "type": "object",
7
+ "properties": {
8
+ "baseUrl": {
9
+ "type": "string",
10
+ "description": "Domain used by users to access ilert web UI. Example: https://my-app.ilert.com/",
11
+ "visibility": "frontend"
12
+ },
13
+ "proxyPath": {
14
+ "type": "string",
15
+ "description": "Path to use for requests via the proxy, defaults to /ilert/api",
16
+ "visibility": "frontend"
17
+ }
18
+ },
19
+ "required": [
20
+ "baseUrl"
21
+ ]
22
+ }
23
+ }
24
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage-community/plugin-ilert",
3
- "version": "0.22.0",
3
+ "version": "0.23.0",
4
4
  "description": "A Backstage plugin that integrates towards ilert",
5
5
  "backstage": {
6
6
  "role": "frontend-plugin",
@@ -26,7 +26,7 @@
26
26
  "types": "dist/index.d.ts",
27
27
  "files": [
28
28
  "dist",
29
- "config.d.ts"
29
+ "config.schema.json"
30
30
  ],
31
31
  "scripts": {
32
32
  "build": "backstage-cli package build",
@@ -39,11 +39,11 @@
39
39
  },
40
40
  "dependencies": {
41
41
  "@backstage/catalog-model": "^1.9.0",
42
- "@backstage/core-components": "^0.18.11",
43
- "@backstage/core-plugin-api": "^1.12.7",
42
+ "@backstage/core-components": "^0.18.12",
43
+ "@backstage/core-plugin-api": "^1.12.8",
44
44
  "@backstage/errors": "^1.3.1",
45
- "@backstage/frontend-plugin-api": "^0.17.2",
46
- "@backstage/plugin-catalog-react": "^3.1.0",
45
+ "@backstage/frontend-plugin-api": "^0.17.3",
46
+ "@backstage/plugin-catalog-react": "^3.2.0",
47
47
  "@date-io/luxon": "1.x",
48
48
  "@material-ui/core": "^4.12.2",
49
49
  "@material-ui/icons": "^4.9.1",
@@ -55,8 +55,8 @@
55
55
  "react-use": "^17.2.4"
56
56
  },
57
57
  "devDependencies": {
58
- "@backstage/cli": "^0.36.3",
59
- "@backstage/dev-utils": "^1.1.24",
58
+ "@backstage/cli": "^0.36.4",
59
+ "@backstage/dev-utils": "^1.1.25",
60
60
  "@testing-library/jest-dom": "^6.0.0",
61
61
  "@types/humanize-duration": "^3.18.1",
62
62
  "@types/react-dom": "^18.2.19",
@@ -69,7 +69,7 @@
69
69
  "react-dom": "^16.13.1 || ^17.0.0 || ^18.0.0",
70
70
  "react-router-dom": "6.0.0-beta.0 || ^6.3.0"
71
71
  },
72
- "configSchema": "config.d.ts",
72
+ "configSchema": "config.schema.json",
73
73
  "typesVersions": {
74
74
  "*": {
75
75
  "package.json": [
package/config.d.ts DELETED
@@ -1,31 +0,0 @@
1
- /*
2
- * Copyright 2021 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
- ilert?: {
18
- /**
19
- * Domain used by users to access ilert web UI.
20
- * Example: https://my-app.ilert.com/
21
- * @visibility frontend
22
- */
23
- baseUrl: string;
24
-
25
- /**
26
- * Path to use for requests via the proxy, defaults to /ilert/api
27
- * @visibility frontend
28
- */
29
- proxyPath?: string;
30
- };
31
- }