@middy/http-partial-response 2.5.4 → 3.0.0-alpha.0
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/LICENSE +1 -1
- package/README.md +1 -1
- package/package.json +7 -7
- package/index.js +0 -39
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2017-
|
|
3
|
+
Copyright (c) 2017-2022 Luciano Mammino, will Farrell and the [Middy team](https://github.com/middyjs/middy/graphs/contributors)
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
package/README.md
CHANGED
|
@@ -97,7 +97,7 @@ Everyone is very welcome to contribute to this repository. Feel free to [raise i
|
|
|
97
97
|
|
|
98
98
|
## License
|
|
99
99
|
|
|
100
|
-
Licensed under [MIT License](LICENSE). Copyright (c) 2017-
|
|
100
|
+
Licensed under [MIT License](LICENSE). Copyright (c) 2017-2022 Luciano Mammino, will Farrell, and the [Middy team](https://github.com/middyjs/middy/graphs/contributors).
|
|
101
101
|
|
|
102
102
|
<a href="https://app.fossa.io/projects/git%2Bgithub.com%2Fmiddyjs%2Fmiddy?ref=badge_large">
|
|
103
103
|
<img src="https://app.fossa.io/api/projects/git%2Bgithub.com%2Fmiddyjs%2Fmiddy.svg?type=large" alt="FOSSA Status" style="max-width:100%;">
|
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@middy/http-partial-response",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0-alpha.0",
|
|
4
4
|
"description": "Http partial response middleware for the middy framework",
|
|
5
|
-
"type": "
|
|
5
|
+
"type": "module",
|
|
6
6
|
"engines": {
|
|
7
|
-
"node": ">=
|
|
7
|
+
"node": ">=14"
|
|
8
8
|
},
|
|
9
9
|
"engineStrict": true,
|
|
10
10
|
"publishConfig": {
|
|
11
11
|
"access": "public"
|
|
12
12
|
},
|
|
13
|
-
"
|
|
13
|
+
"exports": "./index.js",
|
|
14
14
|
"types": "index.d.ts",
|
|
15
15
|
"files": [
|
|
16
16
|
"index.d.ts"
|
|
@@ -47,11 +47,11 @@
|
|
|
47
47
|
},
|
|
48
48
|
"homepage": "https://github.com/middyjs/middy#readme",
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@middy/util": "^
|
|
50
|
+
"@middy/util": "^3.0.0-alpha.0",
|
|
51
51
|
"json-mask": "1.0.4"
|
|
52
52
|
},
|
|
53
|
-
"gitHead": "
|
|
53
|
+
"gitHead": "c533f62841c8a39d061d7b94f30ba178f002c8db",
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@middy/core": "^
|
|
55
|
+
"@middy/core": "^3.0.0-alpha.0"
|
|
56
56
|
}
|
|
57
57
|
}
|
package/index.js
DELETED
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
const mask = require('json-mask');
|
|
4
|
-
|
|
5
|
-
const {
|
|
6
|
-
jsonSafeParse
|
|
7
|
-
} = require('@middy/util');
|
|
8
|
-
|
|
9
|
-
const defaults = {
|
|
10
|
-
filteringKeyName: 'fields'
|
|
11
|
-
};
|
|
12
|
-
|
|
13
|
-
const httpPartialResponseMiddleware = (opts = {}) => {
|
|
14
|
-
const options = { ...defaults,
|
|
15
|
-
...opts
|
|
16
|
-
};
|
|
17
|
-
const {
|
|
18
|
-
filteringKeyName
|
|
19
|
-
} = options;
|
|
20
|
-
|
|
21
|
-
const httpPartialResponseMiddlewareAfter = async request => {
|
|
22
|
-
var _request$response, _request$event, _request$event$queryS;
|
|
23
|
-
|
|
24
|
-
const body = (_request$response = request.response) === null || _request$response === void 0 ? void 0 : _request$response.body;
|
|
25
|
-
if (!body) return;
|
|
26
|
-
const fields = (_request$event = request.event) === null || _request$event === void 0 ? void 0 : (_request$event$queryS = _request$event.queryStringParameters) === null || _request$event$queryS === void 0 ? void 0 : _request$event$queryS[filteringKeyName];
|
|
27
|
-
if (!fields) return;
|
|
28
|
-
const parsedBody = jsonSafeParse(body);
|
|
29
|
-
if (typeof parsedBody !== 'object') return;
|
|
30
|
-
const filteredBody = mask(parsedBody, fields);
|
|
31
|
-
request.response.body = typeof body === 'object' ? filteredBody : JSON.stringify(filteredBody);
|
|
32
|
-
};
|
|
33
|
-
|
|
34
|
-
return {
|
|
35
|
-
after: httpPartialResponseMiddlewareAfter
|
|
36
|
-
};
|
|
37
|
-
};
|
|
38
|
-
|
|
39
|
-
module.exports = httpPartialResponseMiddleware;
|