@rayondigital/nest-dapr 0.9.47 → 0.9.48
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.
|
@@ -68,7 +68,7 @@ let NestActorManager = NestActorManager_1 = class NestActorManager {
|
|
|
68
68
|
setupReentrancy() {
|
|
69
69
|
ActorClientHTTP_1.default.prototype.invoke = function (actorType, actorId, methodName, body, reentrancyId) {
|
|
70
70
|
return __awaiter(this, void 0, void 0, function* () {
|
|
71
|
-
const urlSafeId =
|
|
71
|
+
const urlSafeId = actorId.getURLSafeId();
|
|
72
72
|
const result = yield this.client.execute(`/actors/${actorType}/${urlSafeId}/method/${methodName}`, {
|
|
73
73
|
method: 'POST',
|
|
74
74
|
body,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rayondigital/nest-dapr",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.48",
|
|
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",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"eventemitter2": "^6.0.0"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@dapr/dapr": "^3.
|
|
32
|
+
"@dapr/dapr": "^3.3.1",
|
|
33
33
|
"async-lock": "^1.4.1"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|