@backstage/plugin-events-backend-module-github 0.1.2-next.1 → 0.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 +9 -0
- package/alpha/package.json +1 -1
- package/dist/index.alpha.d.ts +2 -2
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @backstage/plugin-events-backend-module-github
|
|
2
2
|
|
|
3
|
+
## 0.1.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/backend-plugin-api@0.3.0
|
|
9
|
+
- @backstage/config@1.0.6
|
|
10
|
+
- @backstage/plugin-events-node@0.2.1
|
|
11
|
+
|
|
3
12
|
## 0.1.2-next.1
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
package/alpha/package.json
CHANGED
package/dist/index.alpha.d.ts
CHANGED
|
@@ -43,7 +43,7 @@ export declare class GithubEventRouter extends SubTopicEventRouter {
|
|
|
43
43
|
*
|
|
44
44
|
* @alpha
|
|
45
45
|
*/
|
|
46
|
-
export declare const githubEventRouterEventsModule: (
|
|
46
|
+
export declare const githubEventRouterEventsModule: () => BackendFeature;
|
|
47
47
|
|
|
48
48
|
/**
|
|
49
49
|
* Module for the events-backend plugin,
|
|
@@ -52,6 +52,6 @@ export declare const githubEventRouterEventsModule: (options?: undefined) => Bac
|
|
|
52
52
|
*
|
|
53
53
|
* @alpha
|
|
54
54
|
*/
|
|
55
|
-
export declare const githubWebhookEventsModule: (
|
|
55
|
+
export declare const githubWebhookEventsModule: () => BackendFeature;
|
|
56
56
|
|
|
57
57
|
export { }
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-events-backend-module-github",
|
|
3
|
-
"version": "0.1.2
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"main": "dist/index.cjs.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -23,16 +23,16 @@
|
|
|
23
23
|
"postpack": "backstage-cli package postpack"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@backstage/backend-plugin-api": "^0.3.0
|
|
27
|
-
"@backstage/config": "^1.0.6
|
|
28
|
-
"@backstage/plugin-events-node": "^0.2.1
|
|
26
|
+
"@backstage/backend-plugin-api": "^0.3.0",
|
|
27
|
+
"@backstage/config": "^1.0.6",
|
|
28
|
+
"@backstage/plugin-events-node": "^0.2.1",
|
|
29
29
|
"@octokit/webhooks-methods": "^3.0.0",
|
|
30
30
|
"winston": "^3.2.1"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"@backstage/backend-test-utils": "^0.1.32
|
|
34
|
-
"@backstage/cli": "^0.22.1
|
|
35
|
-
"@backstage/plugin-events-backend-test-utils": "^0.1.2
|
|
33
|
+
"@backstage/backend-test-utils": "^0.1.32",
|
|
34
|
+
"@backstage/cli": "^0.22.1",
|
|
35
|
+
"@backstage/plugin-events-backend-test-utils": "^0.1.2",
|
|
36
36
|
"supertest": "^6.1.3"
|
|
37
37
|
},
|
|
38
38
|
"files": [
|