@rayondigital/nest-dapr 0.9.69 → 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.
@@ -172,16 +172,7 @@ DaprModule = DaprModule_1 = __decorate([
172
172
  (0, common_1.Module)({
173
173
  imports: [nestjs_cls_1.ClsModule, core_1.DiscoveryModule],
174
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],
175
- exports: [
176
- dapr_1.DaprClient,
177
- dapr_pubsub_client_service_1.DaprPubSubClient,
178
- dapr_metadata_accessor_1.DaprMetadataAccessor,
179
- dapr_context_service_1.DaprContextService,
180
- actor_runtime_service_1.ActorRuntimeService,
181
- dapr_actor_client_service_1.DaprActorClient,
182
- dapr_event_subscriber_loader_1.DaprEventSubscriberLoader,
183
- dapr_event_emitter_service_1.DaprEventEmitter,
184
- ],
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],
185
176
  })
186
177
  ], DaprModule);
187
178
  exports.DaprModule = DaprModule;
package/package.json CHANGED
@@ -1,13 +1,14 @@
1
1
  {
2
2
  "name": "@rayondigital/nest-dapr",
3
- "version": "0.9.69",
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
  },