@graphql-tools/executor 0.0.7-alpha-20221107161024-c78c6a92 → 0.0.7
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/cjs/execution/execute.js
CHANGED
|
@@ -39,7 +39,7 @@ function execute(args) {
|
|
|
39
39
|
value: {
|
|
40
40
|
...e.extensions,
|
|
41
41
|
http: {
|
|
42
|
-
...(_a = e.extensions) === null || _a === void 0 ? void 0 : _a
|
|
42
|
+
...(_a = e.extensions) === null || _a === void 0 ? void 0 : _a['http'],
|
|
43
43
|
status: 400,
|
|
44
44
|
},
|
|
45
45
|
},
|
|
@@ -746,7 +746,7 @@ function subscribe(args) {
|
|
|
746
746
|
value: {
|
|
747
747
|
...e.extensions,
|
|
748
748
|
http: {
|
|
749
|
-
...(_a = e.extensions) === null || _a === void 0 ? void 0 : _a
|
|
749
|
+
...(_a = e.extensions) === null || _a === void 0 ? void 0 : _a['http'],
|
|
750
750
|
status: 400,
|
|
751
751
|
},
|
|
752
752
|
},
|
|
@@ -824,7 +824,7 @@ function createSourceEventStream(args) {
|
|
|
824
824
|
value: {
|
|
825
825
|
...e.extensions,
|
|
826
826
|
http: {
|
|
827
|
-
...(_a = e.extensions) === null || _a === void 0 ? void 0 : _a
|
|
827
|
+
...(_a = e.extensions) === null || _a === void 0 ? void 0 : _a['http'],
|
|
828
828
|
status: 400,
|
|
829
829
|
},
|
|
830
830
|
},
|
package/esm/execution/execute.js
CHANGED
|
@@ -36,7 +36,7 @@ export function execute(args) {
|
|
|
36
36
|
value: {
|
|
37
37
|
...e.extensions,
|
|
38
38
|
http: {
|
|
39
|
-
...(_a = e.extensions) === null || _a === void 0 ? void 0 : _a
|
|
39
|
+
...(_a = e.extensions) === null || _a === void 0 ? void 0 : _a['http'],
|
|
40
40
|
status: 400,
|
|
41
41
|
},
|
|
42
42
|
},
|
|
@@ -736,7 +736,7 @@ export function subscribe(args) {
|
|
|
736
736
|
value: {
|
|
737
737
|
...e.extensions,
|
|
738
738
|
http: {
|
|
739
|
-
...(_a = e.extensions) === null || _a === void 0 ? void 0 : _a
|
|
739
|
+
...(_a = e.extensions) === null || _a === void 0 ? void 0 : _a['http'],
|
|
740
740
|
status: 400,
|
|
741
741
|
},
|
|
742
742
|
},
|
|
@@ -813,7 +813,7 @@ export function createSourceEventStream(args) {
|
|
|
813
813
|
value: {
|
|
814
814
|
...e.extensions,
|
|
815
815
|
http: {
|
|
816
|
-
...(_a = e.extensions) === null || _a === void 0 ? void 0 : _a
|
|
816
|
+
...(_a = e.extensions) === null || _a === void 0 ? void 0 : _a['http'],
|
|
817
817
|
status: 400,
|
|
818
818
|
},
|
|
819
819
|
},
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@graphql-tools/executor",
|
|
3
|
-
"version": "0.0.7
|
|
3
|
+
"version": "0.0.7",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
|
|
7
7
|
},
|
|
8
8
|
"dependencies": {
|
|
9
9
|
"@repeaterjs/repeater": "3.0.4",
|
|
10
|
-
"@graphql-tools/utils": "9.1.0
|
|
10
|
+
"@graphql-tools/utils": "9.1.0",
|
|
11
11
|
"@graphql-typed-document-node/core": "3.1.1",
|
|
12
12
|
"tslib": "^2.4.0",
|
|
13
13
|
"value-or-promise": "1.0.11"
|