@backstage/plugin-events-node 0.4.17 → 0.4.18-next.1
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 +19 -0
- package/dist/alpha.d.ts +2 -1
- package/dist/index.d.ts +2 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @backstage/plugin-events-node
|
|
2
2
|
|
|
3
|
+
## 0.4.18-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- de96a60: chore(deps): bump `express` from 4.21.2 to 4.22.0
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/backend-plugin-api@1.6.0-next.1
|
|
10
|
+
- @backstage/errors@1.2.7
|
|
11
|
+
- @backstage/types@1.2.2
|
|
12
|
+
|
|
13
|
+
## 0.4.18-next.0
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- Updated dependencies
|
|
18
|
+
- @backstage/backend-plugin-api@1.5.1-next.0
|
|
19
|
+
- @backstage/errors@1.2.7
|
|
20
|
+
- @backstage/types@1.2.2
|
|
21
|
+
|
|
3
22
|
## 0.4.17
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
package/dist/alpha.d.ts
CHANGED
|
@@ -25,4 +25,5 @@ interface EventsExtensionPoint {
|
|
|
25
25
|
*/
|
|
26
26
|
declare const eventsExtensionPoint: _backstage_backend_plugin_api.ExtensionPoint<EventsExtensionPoint>;
|
|
27
27
|
|
|
28
|
-
export {
|
|
28
|
+
export { eventsExtensionPoint };
|
|
29
|
+
export type { EventsExtensionPoint };
|
package/dist/index.d.ts
CHANGED
|
@@ -315,4 +315,5 @@ declare const eventsServiceRef: _backstage_backend_plugin_api.ServiceRef<EventsS
|
|
|
315
315
|
/** @public */
|
|
316
316
|
declare const eventsServiceFactory: _backstage_backend_plugin_api.ServiceFactory<EventsService, "plugin", "singleton">;
|
|
317
317
|
|
|
318
|
-
export { DefaultEventsService, EVENTS_NOTIFY_TIMEOUT_HEADER,
|
|
318
|
+
export { DefaultEventsService, EVENTS_NOTIFY_TIMEOUT_HEADER, EventRouter, SubTopicEventRouter, eventsServiceFactory, eventsServiceRef };
|
|
319
|
+
export type { EventBroker, EventBusMode, EventParams, EventPublisher, EventSubscriber, EventsService, EventsServiceEventHandler, EventsServiceSubscribeOptions, HttpBodyParsed, HttpBodyParser, HttpBodyParserOptions, HttpPostIngressOptions, RequestDetails, RequestRejectionDetails, RequestValidationContext, RequestValidator };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-events-node",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.18-next.1",
|
|
4
4
|
"description": "The plugin-events-node module for @backstage/plugin-events-backend",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "node-library",
|
|
@@ -60,19 +60,19 @@
|
|
|
60
60
|
"test": "backstage-cli package test"
|
|
61
61
|
},
|
|
62
62
|
"dependencies": {
|
|
63
|
-
"@backstage/backend-plugin-api": "
|
|
64
|
-
"@backstage/errors": "
|
|
65
|
-
"@backstage/types": "
|
|
63
|
+
"@backstage/backend-plugin-api": "1.6.0-next.1",
|
|
64
|
+
"@backstage/errors": "1.2.7",
|
|
65
|
+
"@backstage/types": "1.2.2",
|
|
66
66
|
"@types/content-type": "^1.1.8",
|
|
67
67
|
"@types/express": "^4.17.6",
|
|
68
68
|
"content-type": "^1.0.5",
|
|
69
69
|
"cross-fetch": "^4.0.0",
|
|
70
|
-
"express": "^4.
|
|
70
|
+
"express": "^4.22.0",
|
|
71
71
|
"uri-template": "^2.0.0"
|
|
72
72
|
},
|
|
73
73
|
"devDependencies": {
|
|
74
|
-
"@backstage/backend-test-utils": "
|
|
75
|
-
"@backstage/cli": "
|
|
74
|
+
"@backstage/backend-test-utils": "1.10.2-next.1",
|
|
75
|
+
"@backstage/cli": "0.35.0-next.2",
|
|
76
76
|
"msw": "^1.0.0"
|
|
77
77
|
},
|
|
78
78
|
"configSchema": "config.d.ts"
|