@rayondigital/nest-dapr 0.9.70 → 0.9.71

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.
@@ -87,6 +87,7 @@ let DaprModule = DaprModule_1 = class DaprModule {
87
87
  exports: [
88
88
  dapr_1.DaprClient,
89
89
  dapr_pubsub_client_service_1.DaprPubSubClient,
90
+ dapr_metadata_accessor_1.DaprMetadataAccessor,
90
91
  dapr_context_service_1.DaprContextService,
91
92
  actor_runtime_service_1.ActorRuntimeService,
92
93
  dapr_actor_client_service_1.DaprActorClient,
@@ -170,14 +171,7 @@ let DaprModule = DaprModule_1 = class DaprModule {
170
171
  DaprModule = DaprModule_1 = __decorate([
171
172
  (0, common_1.Module)({
172
173
  imports: [nestjs_cls_1.ClsModule, core_1.DiscoveryModule],
173
- providers: [
174
- dapr_actor_client_service_1.DaprActorClient,
175
- nest_actor_manager_1.NestActorManager,
176
- dapr_metadata_accessor_1.DaprMetadataAccessor,
177
- dapr_context_service_1.DaprContextService,
178
- dapr_event_subscriber_loader_1.DaprEventSubscriberLoader,
179
- actor_runtime_service_1.ActorRuntimeService,
180
- ],
174
+ providers: [dapr_actor_client_service_1.DaprActorClient, nest_actor_manager_1.NestActorManager, dapr_context_service_1.DaprContextService, dapr_event_subscriber_loader_1.DaprEventSubscriberLoader, actor_runtime_service_1.ActorRuntimeService],
181
175
  exports: [dapr_actor_client_service_1.DaprActorClient, dapr_context_service_1.DaprContextService, dapr_metadata_accessor_1.DaprMetadataAccessor, dapr_event_subscriber_loader_1.DaprEventSubscriberLoader, actor_runtime_service_1.ActorRuntimeService],
182
176
  })
183
177
  ], DaprModule);
package/package.json CHANGED
@@ -1,13 +1,14 @@
1
1
  {
2
2
  "name": "@rayondigital/nest-dapr",
3
- "version": "0.9.70",
3
+ "version": "0.9.71",
4
4
  "description": "Develop NestJs microservices using Dapr pubsub, actors and other bindings",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
7
7
  "scripts": {
8
8
  "build": "rimraf -rf dist && tsc -p tsconfig.json",
9
9
  "lint": "eslint \"{lib,tests}/**/*.ts\" --fix",
10
- "test": "jest",
10
+ "test": "jest --runInBand",
11
+ "test:in-memory": "dapr run --app-id testing --app-protocol http --app-port 3001 --dapr-http-port 3500 --resources-path ./tests/components npm run test",
11
12
  "start:test": "nodemon tests/e2e/main.ts",
12
13
  "push:version": "git push --follow-tags"
13
14
  },