Comparing version 2.3.19 to 2.5.0
@@ -31,2 +31,4 @@ import { Core } from '../core'; | ||
id: any; | ||
raw: string; | ||
__typename: string; | ||
type: string | null; | ||
@@ -33,0 +35,0 @@ threadId: string | null; |
@@ -64,3 +64,3 @@ "use strict"; | ||
message = _a.sent(); | ||
res = __assign(__assign({}, message), { data: JSON.stringify(message.data), id: message.id }); | ||
res = __assign(__assign({}, message), { data: JSON.stringify(message.data), id: message.id, raw: message.raw, __typename: 'Message' }); | ||
return [2 /*return*/, res]; | ||
@@ -67,0 +67,0 @@ } |
@@ -29,2 +29,4 @@ declare const Gql: { | ||
id: any; | ||
raw: string; | ||
__typename: string; | ||
type: string | null; | ||
@@ -31,0 +33,0 @@ threadId: string | null; |
@@ -6,2 +6,13 @@ # Change Log | ||
# [2.5.0](https://github.com/uport-project/daf/compare/v2.4.1...v2.5.0) (2020-03-13) | ||
### Bug Fixes | ||
* GQL return raw while validating message ([53573bc](https://github.com/uport-project/daf/commit/53573bc07cbaabc92c34baaa3096acd279aa985f)) | ||
## [2.3.19](https://github.com/uport-project/daf/compare/v2.3.18...v2.3.19) (2020-03-11) | ||
@@ -8,0 +19,0 @@ |
{ | ||
"name": "daf-core", | ||
"description": "DID Agent Framework Core", | ||
"version": "2.3.19", | ||
"version": "2.5.0", | ||
"main": "build/index.js", | ||
@@ -30,3 +30,3 @@ "types": "build/index.d.ts", | ||
"keywords": [], | ||
"gitHead": "565668bd9da0fa7ec3a07c046cd4cdfb32b3c223" | ||
"gitHead": "e8c8d5b899db1a1ed902b4042d563ebe7f39bf72" | ||
} |
@@ -29,2 +29,4 @@ import { Core } from '../core' | ||
id: message.id, | ||
raw: message.raw, | ||
__typename: 'Message', | ||
} | ||
@@ -31,0 +33,0 @@ return res |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
159932
2559