@webiny/handler-graphql 5.37.2 → 5.37.3-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/builtInTypes/AnyScalar.js +3 -1
- package/builtInTypes/DateScalar.js +3 -1
- package/builtInTypes/DateTimeScalar.js +3 -1
- package/builtInTypes/DateTimeZScalar.js +3 -1
- package/builtInTypes/JsonScalar.js +3 -1
- package/builtInTypes/LongScalar.js +3 -1
- package/builtInTypes/NumberScalar.js +3 -1
- package/builtInTypes/RefInputScalar.js +3 -1
- package/builtInTypes/TimeScalar.js +3 -1
- package/builtInTypes/index.js +3 -1
- package/createGraphQLHandler.js +3 -1
- package/createGraphQLSchema.js +3 -1
- package/debugPlugins.js +3 -1
- package/errors.js +3 -1
- package/index.js +3 -1
- package/interceptConsole.js +3 -1
- package/package.json +9 -9
- package/plugins/GraphQLSchemaPlugin.js +3 -1
- package/plugins/index.js +3 -1
- package/processRequestBody.js +3 -1
- package/responses.js +3 -1
- package/types.js +3 -1
|
@@ -6,4 +6,6 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
exports.JsonScalar = void 0;
|
|
7
7
|
var _graphqlScalars = require("graphql-scalars");
|
|
8
8
|
const JsonScalar = _graphqlScalars.JSONResolver;
|
|
9
|
-
exports.JsonScalar = JsonScalar;
|
|
9
|
+
exports.JsonScalar = JsonScalar;
|
|
10
|
+
|
|
11
|
+
//# sourceMappingURL=JsonScalar.js.map
|
package/builtInTypes/index.js
CHANGED
package/createGraphQLHandler.js
CHANGED
package/createGraphQLSchema.js
CHANGED
package/debugPlugins.js
CHANGED
package/errors.js
CHANGED
package/index.js
CHANGED
|
@@ -53,4 +53,6 @@ Object.keys(_plugins).forEach(function (key) {
|
|
|
53
53
|
});
|
|
54
54
|
var _processRequestBody = _interopRequireDefault(require("./processRequestBody"));
|
|
55
55
|
var _default = (options = {}) => [(0, _createGraphQLHandler.default)(options)];
|
|
56
|
-
exports.default = _default;
|
|
56
|
+
exports.default = _default;
|
|
57
|
+
|
|
58
|
+
//# sourceMappingURL=index.js.map
|
package/interceptConsole.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webiny/handler-graphql",
|
|
3
|
-
"version": "5.37.
|
|
3
|
+
"version": "5.37.3-beta.1",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -16,10 +16,10 @@
|
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@babel/runtime": "7.22.6",
|
|
18
18
|
"@graphql-tools/schema": "7.1.5",
|
|
19
|
-
"@webiny/api": "5.37.
|
|
20
|
-
"@webiny/error": "5.37.
|
|
21
|
-
"@webiny/handler": "5.37.
|
|
22
|
-
"@webiny/plugins": "5.37.
|
|
19
|
+
"@webiny/api": "5.37.3-beta.1",
|
|
20
|
+
"@webiny/error": "5.37.3-beta.1",
|
|
21
|
+
"@webiny/handler": "5.37.3-beta.1",
|
|
22
|
+
"@webiny/plugins": "5.37.3-beta.1",
|
|
23
23
|
"boolean": "3.2.0",
|
|
24
24
|
"graphql": "15.8.0",
|
|
25
25
|
"graphql-scalars": "1.12.0",
|
|
@@ -29,9 +29,9 @@
|
|
|
29
29
|
"@babel/cli": "7.22.6",
|
|
30
30
|
"@babel/core": "7.22.8",
|
|
31
31
|
"@babel/preset-env": "7.22.7",
|
|
32
|
-
"@webiny/cli": "5.37.
|
|
33
|
-
"@webiny/handler-aws": "5.37.
|
|
34
|
-
"@webiny/project-utils": "5.37.
|
|
32
|
+
"@webiny/cli": "5.37.3-beta.1",
|
|
33
|
+
"@webiny/handler-aws": "5.37.3-beta.1",
|
|
34
|
+
"@webiny/project-utils": "5.37.3-beta.1",
|
|
35
35
|
"jest": "29.5.0",
|
|
36
36
|
"jest-mock-console": "1.3.0",
|
|
37
37
|
"rimraf": "3.0.2",
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"build": "yarn webiny run build",
|
|
47
47
|
"watch": "yarn webiny run watch"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "59d377132f34c76cb198cd0f0eee211a56ca25b7"
|
|
50
50
|
}
|
|
@@ -21,4 +21,6 @@ class GraphQLSchemaPlugin extends _plugins.Plugin {
|
|
|
21
21
|
}
|
|
22
22
|
}
|
|
23
23
|
exports.GraphQLSchemaPlugin = GraphQLSchemaPlugin;
|
|
24
|
-
(0, _defineProperty2.default)(GraphQLSchemaPlugin, "type", "graphql-schema");
|
|
24
|
+
(0, _defineProperty2.default)(GraphQLSchemaPlugin, "type", "graphql-schema");
|
|
25
|
+
|
|
26
|
+
//# sourceMappingURL=GraphQLSchemaPlugin.js.map
|
package/plugins/index.js
CHANGED
package/processRequestBody.js
CHANGED
package/responses.js
CHANGED