@rayondigital/nest-dapr 0.9.69 → 0.9.70
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/dist/dapr.module.js +5 -8
- package/package.json +1 -1
package/dist/dapr.module.js
CHANGED
|
@@ -87,7 +87,6 @@ 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,
|
|
91
90
|
dapr_context_service_1.DaprContextService,
|
|
92
91
|
actor_runtime_service_1.ActorRuntimeService,
|
|
93
92
|
dapr_actor_client_service_1.DaprActorClient,
|
|
@@ -171,17 +170,15 @@ let DaprModule = DaprModule_1 = class DaprModule {
|
|
|
171
170
|
DaprModule = DaprModule_1 = __decorate([
|
|
172
171
|
(0, common_1.Module)({
|
|
173
172
|
imports: [nestjs_cls_1.ClsModule, core_1.DiscoveryModule],
|
|
174
|
-
providers: [
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
dapr_pubsub_client_service_1.DaprPubSubClient,
|
|
173
|
+
providers: [
|
|
174
|
+
dapr_actor_client_service_1.DaprActorClient,
|
|
175
|
+
nest_actor_manager_1.NestActorManager,
|
|
178
176
|
dapr_metadata_accessor_1.DaprMetadataAccessor,
|
|
179
177
|
dapr_context_service_1.DaprContextService,
|
|
180
|
-
actor_runtime_service_1.ActorRuntimeService,
|
|
181
|
-
dapr_actor_client_service_1.DaprActorClient,
|
|
182
178
|
dapr_event_subscriber_loader_1.DaprEventSubscriberLoader,
|
|
183
|
-
|
|
179
|
+
actor_runtime_service_1.ActorRuntimeService,
|
|
184
180
|
],
|
|
181
|
+
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
182
|
})
|
|
186
183
|
], DaprModule);
|
|
187
184
|
exports.DaprModule = DaprModule;
|
package/package.json
CHANGED