@pagerduty/backstage-plugin-entity-processor 0.2.0-next.0 → 0.2.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.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/config.d.ts +0 -46
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pagerduty/backstage-plugin-entity-processor",
3
- "version": "0.2.0-next.0",
3
+ "version": "0.2.0",
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
  "@backstage/catalog-model": "^1.5.0",
38
38
  "@backstage/config": "^1.2.0",
39
39
  "@backstage/plugin-catalog-node": "^1.12.2",
40
- "@pagerduty/backstage-plugin-common": "0.1.6-next.3",
40
+ "@pagerduty/backstage-plugin-common": "0.2.0",
41
41
  "@rjsf/core": "^5.14.3",
42
42
  "node-fetch": "^2.6.7",
43
43
  "winston": "^3.2.1",
package/config.d.ts DELETED
@@ -1,46 +0,0 @@
1
- /*
2
- * Copyright 2023 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
-
17
- import { PagerDutyOAuthConfig } from '@pagerduty/backstage-plugin-common';
18
-
19
- export interface Config {
20
- /**
21
- * Configuration for the PagerDuty plugin
22
- * @visibility frontend
23
- */
24
- pagerDuty?: {
25
- /**
26
- * Optional Events Base URL to override the default.
27
- * @visibility frontend
28
- */
29
- eventsBaseUrl?: string;
30
- /**
31
- * Optional API Base URL to override the default.
32
- * @visibility frontend
33
- */
34
- apiBaseUrl?: string;
35
- /**
36
- * Optional PagerDuty API Token used in API calls from the backend component.
37
- * @visibility secret
38
- */
39
- apiToken?: string;
40
- /**
41
- * Optional PagerDuty Scoped OAuth Token used in API calls from the backend component.
42
- * @deepVisibility secret
43
- */
44
- oauth?: PagerDutyOAuthConfig;
45
- };
46
- }