Comparing version 1.4.0 to 1.4.1
@@ -12,2 +12,3 @@ import { Core } from '../core'; | ||
}, ctx: Context) => Promise<{ | ||
id: any; | ||
data: string; | ||
@@ -14,0 +15,0 @@ raw: string; |
@@ -72,3 +72,3 @@ "use strict"; | ||
res = _a.sent(); | ||
return [2 /*return*/, res.map(function (msg) { return (__assign(__assign({}, msg), { data: JSON.stringify(msg.data), raw: msg.raw, metaData: msg.allMeta })); })]; | ||
return [2 /*return*/, res.map(function (msg) { return (__assign(__assign({}, msg), { id: msg.id, data: JSON.stringify(msg.data), raw: msg.raw, metaData: msg.allMeta })); })]; | ||
} | ||
@@ -75,0 +75,0 @@ }); |
@@ -6,2 +6,13 @@ # Change Log | ||
## [1.4.1](https://github.com/uport-project/daf/compare/v1.4.0...v1.4.1) (2020-01-14) | ||
### Bug Fixes | ||
* Adding id to serviceMessagesSince ([45bb45b](https://github.com/uport-project/daf/commit/45bb45b8b59034e6f793d486e06efc998c53584e)) | ||
# [1.4.0](https://github.com/uport-project/daf/compare/v1.3.7...v1.4.0) (2020-01-14) | ||
@@ -8,0 +19,0 @@ |
{ | ||
"name": "daf-core", | ||
"description": "DID Agent Framework Core", | ||
"version": "1.4.0", | ||
"version": "1.4.1", | ||
"main": "build/index.js", | ||
@@ -30,3 +30,3 @@ "types": "build/index.d.ts", | ||
"keywords": [], | ||
"gitHead": "202b139fb6d940593f3094a825c3754bdc2159c6" | ||
"gitHead": "117cec0e1984d92c64ddc8fa73ddbad256126d35" | ||
} |
@@ -34,2 +34,3 @@ import { Core } from '../core' | ||
...msg, | ||
id: msg.id, | ||
data: JSON.stringify(msg.data), | ||
@@ -36,0 +37,0 @@ raw: msg.raw, |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
126549
2252