@backstage/plugin-events-backend-module-github 0.4.13 → 0.4.14-next.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,13 @@
1
1
  # @backstage/plugin-events-backend-module-github
2
2
 
3
+ ## 0.4.14-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/backend-plugin-api@1.9.3-next.0
9
+ - @backstage/plugin-events-node@0.4.24-next.0
10
+
3
11
  ## 0.4.13
4
12
 
5
13
  ### Patch Changes
@@ -0,0 +1,27 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "type": "object",
4
+ "properties": {
5
+ "events": {
6
+ "type": "object",
7
+ "properties": {
8
+ "modules": {
9
+ "type": "object",
10
+ "properties": {
11
+ "github": {
12
+ "type": "object",
13
+ "properties": {
14
+ "webhookSecret": {
15
+ "type": "string",
16
+ "description": "Secret token for webhook requests used to verify signatures.\n\nSee https://docs.github.com/en/developers/webhooks-and-events/webhooks/securing-your-webhooks for more details.\n\nWebhook listener will only be enabled if this is set.",
17
+ "visibility": "secret"
18
+ }
19
+ },
20
+ "description": "events-backend-module-github plugin configuration."
21
+ }
22
+ }
23
+ }
24
+ }
25
+ }
26
+ }
27
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-events-backend-module-github",
3
- "version": "0.4.13",
3
+ "version": "0.4.14-next.0",
4
4
  "backstage": {
5
5
  "role": "backend-plugin-module",
6
6
  "pluginId": "events",
@@ -38,7 +38,7 @@
38
38
  }
39
39
  },
40
40
  "files": [
41
- "config.d.ts",
41
+ "config.schema.json",
42
42
  "dist"
43
43
  ],
44
44
  "scripts": {
@@ -51,20 +51,20 @@
51
51
  "test": "backstage-cli package test"
52
52
  },
53
53
  "dependencies": {
54
- "@backstage/backend-plugin-api": "^1.9.2",
55
- "@backstage/config": "^1.3.8",
56
- "@backstage/integration": "^2.0.3",
57
- "@backstage/plugin-events-node": "^0.4.23",
58
- "@backstage/types": "^1.2.2",
54
+ "@backstage/backend-plugin-api": "1.9.3-next.0",
55
+ "@backstage/config": "1.3.8",
56
+ "@backstage/integration": "2.0.3",
57
+ "@backstage/plugin-events-node": "0.4.24-next.0",
58
+ "@backstage/types": "1.2.2",
59
59
  "@octokit/auth-callback": "^5.0.0",
60
60
  "@octokit/webhooks-methods": "^3.0.0",
61
61
  "lodash": "^4.17.21",
62
62
  "octokit": "^3.0.0"
63
63
  },
64
64
  "devDependencies": {
65
- "@backstage/backend-test-utils": "^1.11.4",
66
- "@backstage/cli": "^0.36.3",
67
- "@backstage/plugin-events-backend-test-utils": "^0.1.56"
65
+ "@backstage/backend-test-utils": "1.11.5-next.0",
66
+ "@backstage/cli": "0.36.4-next.0",
67
+ "@backstage/plugin-events-backend-test-utils": "0.1.57-next.0"
68
68
  },
69
- "configSchema": "config.d.ts"
69
+ "configSchema": "config.schema.json"
70
70
  }
package/config.d.ts DELETED
@@ -1,38 +0,0 @@
1
- /*
2
- * Copyright 2022 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
- export interface Config {
18
- events?: {
19
- modules?: {
20
- /**
21
- * events-backend-module-github plugin configuration.
22
- */
23
- github?: {
24
- /**
25
- * Secret token for webhook requests used to verify signatures.
26
- *
27
- * See https://docs.github.com/en/developers/webhooks-and-events/webhooks/securing-your-webhooks
28
- * for more details.
29
- *
30
- * Webhook listener will only be enabled if this is set.
31
- *
32
- * @visibility secret
33
- */
34
- webhookSecret?: string;
35
- };
36
- };
37
- };
38
- }