@backstage/plugin-events-node 0.3.9-next.1 → 0.3.9-next.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 CHANGED
@@ -1,5 +1,12 @@
1
1
  # @backstage/plugin-events-node
2
2
 
3
+ ## 0.3.9-next.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/backend-plugin-api@0.8.0-next.2
9
+
3
10
  ## 0.3.9-next.1
4
11
 
5
12
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-events-node__alpha",
3
- "version": "0.3.9-next.1",
3
+ "version": "0.3.9-next.2",
4
4
  "main": "../dist/alpha.cjs.js",
5
5
  "types": "../dist/alpha.d.ts"
6
6
  }
package/dist/index.d.ts CHANGED
@@ -256,8 +256,8 @@ interface EventPublisher {
256
256
  *
257
257
  * @public
258
258
  */
259
- declare const eventsServiceRef: _backstage_backend_plugin_api.ServiceRef<EventsService, "plugin">;
259
+ declare const eventsServiceRef: _backstage_backend_plugin_api.ServiceRef<EventsService, "plugin", "singleton">;
260
260
  /** @public */
261
- declare const eventsServiceFactory: _backstage_backend_plugin_api.ServiceFactoryCompat<EventsService, "plugin", undefined>;
261
+ declare const eventsServiceFactory: _backstage_backend_plugin_api.ServiceFactoryCompat<EventsService, "plugin", "singleton", undefined>;
262
262
 
263
263
  export { DefaultEventsService, type EventBroker, type EventParams, type EventPublisher, EventRouter, type EventSubscriber, type EventsService, type EventsServiceEventHandler, type EventsServiceSubscribeOptions, type HttpPostIngressOptions, type RequestDetails, type RequestRejectionDetails, type RequestValidationContext, type RequestValidator, SubTopicEventRouter, eventsServiceFactory, eventsServiceRef };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-events-node",
3
- "version": "0.3.9-next.1",
3
+ "version": "0.3.9-next.2",
4
4
  "description": "The plugin-events-node module for @backstage/plugin-events-backend",
5
5
  "backstage": {
6
6
  "role": "node-library",
@@ -50,11 +50,11 @@
50
50
  "test": "backstage-cli package test"
51
51
  },
52
52
  "dependencies": {
53
- "@backstage/backend-plugin-api": "^0.7.1-next.1"
53
+ "@backstage/backend-plugin-api": "^0.8.0-next.2"
54
54
  },
55
55
  "devDependencies": {
56
- "@backstage/backend-common": "^0.23.4-next.1",
57
- "@backstage/backend-test-utils": "^0.4.5-next.1",
58
- "@backstage/cli": "^0.27.0-next.1"
56
+ "@backstage/backend-common": "^0.23.4-next.2",
57
+ "@backstage/backend-test-utils": "^0.4.5-next.2",
58
+ "@backstage/cli": "^0.27.0-next.3"
59
59
  }
60
60
  }