@dazn/kopytko-framework 1.0.4 → 1.0.5

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/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [1.0.5](https://github.com/getndazn/kopytko-framework/compare/v1.0.4...v1.0.5) (2022-05-19)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * expose response headers in HttpResponse ([#26](https://github.com/getndazn/kopytko-framework/issues/26)) ([5517ff2](https://github.com/getndazn/kopytko-framework/commit/5517ff2eaff9d11a8d81ada9ea390288eb049d15))
7
+
1
8
  ## [1.0.4](https://github.com/getndazn/kopytko-framework/compare/v1.0.3...v1.0.4) (2022-04-11)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dazn/kopytko-framework",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "A modern Roku's Brightscript framework",
5
5
  "keywords": [
6
6
  "brightscript",
@@ -67,6 +67,7 @@ function HttpResponse(response as Object) as Object
67
67
  responseNode = CreateObject("roSGNode", "Node")
68
68
  responseNode.id = m._id
69
69
  responseNode.addFields({
70
+ headers: m._headers,
70
71
  httpStatusCode: m._httpStatusCode,
71
72
  isSuccess: m._isSuccess,
72
73
  rawData: m._data,