@webiny/handler 5.37.4 → 5.37.5-beta.1
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/Context.js +3 -1
- package/fastify.js +3 -1
- package/index.js +3 -1
- package/middleware.js +3 -1
- package/package.json +9 -9
- package/plugins/BeforeHandlerPlugin.js +3 -1
- package/plugins/EventPlugin.js +3 -1
- package/plugins/HandlerErrorPlugin.js +3 -1
- package/plugins/HandlerOnRequestPlugin.js +3 -1
- package/plugins/HandlerResultPlugin.js +3 -1
- package/plugins/ModifyFastifyPlugin.js +3 -1
- package/plugins/RoutePlugin.js +3 -1
- package/types.js +3 -1
package/Context.js
CHANGED
|
@@ -37,4 +37,6 @@ exports.ContextPlugin = ContextPlugin;
|
|
|
37
37
|
const createContextPlugin = callable => {
|
|
38
38
|
return (0, _api.createContextPlugin)(callable);
|
|
39
39
|
};
|
|
40
|
-
exports.createContextPlugin = createContextPlugin;
|
|
40
|
+
exports.createContextPlugin = createContextPlugin;
|
|
41
|
+
|
|
42
|
+
//# sourceMappingURL=Context.js.map
|
package/fastify.js
CHANGED
package/index.js
CHANGED
package/middleware.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webiny/handler",
|
|
3
|
-
"version": "5.37.
|
|
3
|
+
"version": "5.37.5-beta.1",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -15,11 +15,11 @@
|
|
|
15
15
|
"@babel/runtime": "7.22.6",
|
|
16
16
|
"@fastify/compress": "6.2.0",
|
|
17
17
|
"@fastify/cookie": "8.3.0",
|
|
18
|
-
"@webiny/api": "5.37.
|
|
19
|
-
"@webiny/error": "5.37.
|
|
20
|
-
"@webiny/handler-client": "5.37.
|
|
21
|
-
"@webiny/plugins": "5.37.
|
|
22
|
-
"@webiny/utils": "5.37.
|
|
18
|
+
"@webiny/api": "5.37.5-beta.1",
|
|
19
|
+
"@webiny/error": "5.37.5-beta.1",
|
|
20
|
+
"@webiny/handler-client": "5.37.5-beta.1",
|
|
21
|
+
"@webiny/plugins": "5.37.5-beta.1",
|
|
22
|
+
"@webiny/utils": "5.37.5-beta.1",
|
|
23
23
|
"fastify": "4.11.0"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
"@babel/core": "7.22.8",
|
|
28
28
|
"@babel/preset-env": "7.22.7",
|
|
29
29
|
"@babel/preset-typescript": "7.22.5",
|
|
30
|
-
"@webiny/cli": "5.37.
|
|
31
|
-
"@webiny/project-utils": "5.37.
|
|
30
|
+
"@webiny/cli": "5.37.5-beta.1",
|
|
31
|
+
"@webiny/project-utils": "5.37.5-beta.1",
|
|
32
32
|
"rimraf": "3.0.2",
|
|
33
33
|
"ttypescript": "1.5.15",
|
|
34
34
|
"typescript": "4.7.4"
|
|
@@ -41,5 +41,5 @@
|
|
|
41
41
|
"build": "yarn webiny run build",
|
|
42
42
|
"watch": "yarn webiny run watch"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "88829ab0c5d875491d6b260f184b7b7fe3a6d449"
|
|
45
45
|
}
|
|
@@ -25,4 +25,6 @@ exports.BeforeHandlerPlugin = BeforeHandlerPlugin;
|
|
|
25
25
|
const createBeforeHandlerPlugin = callable => {
|
|
26
26
|
return new BeforeHandlerPlugin(callable);
|
|
27
27
|
};
|
|
28
|
-
exports.createBeforeHandlerPlugin = createBeforeHandlerPlugin;
|
|
28
|
+
exports.createBeforeHandlerPlugin = createBeforeHandlerPlugin;
|
|
29
|
+
|
|
30
|
+
//# sourceMappingURL=BeforeHandlerPlugin.js.map
|
package/plugins/EventPlugin.js
CHANGED
|
@@ -22,4 +22,6 @@ exports.HandlerErrorPlugin = HandlerErrorPlugin;
|
|
|
22
22
|
const createHandlerErrorPlugin = callable => {
|
|
23
23
|
return new HandlerErrorPlugin(callable);
|
|
24
24
|
};
|
|
25
|
-
exports.createHandlerErrorPlugin = createHandlerErrorPlugin;
|
|
25
|
+
exports.createHandlerErrorPlugin = createHandlerErrorPlugin;
|
|
26
|
+
|
|
27
|
+
//# sourceMappingURL=HandlerErrorPlugin.js.map
|
|
@@ -29,4 +29,6 @@ exports.HandlerOnRequestPlugin = HandlerOnRequestPlugin;
|
|
|
29
29
|
const createHandlerOnRequest = cb => {
|
|
30
30
|
return new HandlerOnRequestPlugin(cb);
|
|
31
31
|
};
|
|
32
|
-
exports.createHandlerOnRequest = createHandlerOnRequest;
|
|
32
|
+
exports.createHandlerOnRequest = createHandlerOnRequest;
|
|
33
|
+
|
|
34
|
+
//# sourceMappingURL=HandlerOnRequestPlugin.js.map
|
|
@@ -22,4 +22,6 @@ exports.HandlerResultPlugin = HandlerResultPlugin;
|
|
|
22
22
|
const createHandlerResultPlugin = callable => {
|
|
23
23
|
return new HandlerResultPlugin(callable);
|
|
24
24
|
};
|
|
25
|
-
exports.createHandlerResultPlugin = createHandlerResultPlugin;
|
|
25
|
+
exports.createHandlerResultPlugin = createHandlerResultPlugin;
|
|
26
|
+
|
|
27
|
+
//# sourceMappingURL=HandlerResultPlugin.js.map
|
|
@@ -22,4 +22,6 @@ exports.ModifyFastifyPlugin = ModifyFastifyPlugin;
|
|
|
22
22
|
const createModifyFastifyPlugin = cb => {
|
|
23
23
|
return new ModifyFastifyPlugin(cb);
|
|
24
24
|
};
|
|
25
|
-
exports.createModifyFastifyPlugin = createModifyFastifyPlugin;
|
|
25
|
+
exports.createModifyFastifyPlugin = createModifyFastifyPlugin;
|
|
26
|
+
|
|
27
|
+
//# sourceMappingURL=ModifyFastifyPlugin.js.map
|
package/plugins/RoutePlugin.js
CHANGED