@graphql-mesh/transport-soap 0.9.0-alpha-20250222123306-c4e9853f99ab809e18ab5a1ff76df14ac19b386e → 0.9.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/cjs/executor.js +1 -1
- package/esm/executor.js +1 -1
- package/package.json +3 -3
package/cjs/executor.js
CHANGED
|
@@ -80,7 +80,7 @@ function prefixWithAlias({ alias, obj, resolverData, }) {
|
|
|
80
80
|
return obj;
|
|
81
81
|
}
|
|
82
82
|
function createRootValueMethod({ soapAnnotations, fetchFn, jsonToXMLConverter, xmlToJSONConverter, operationHeadersFactory, logger, }) {
|
|
83
|
-
if (soapAnnotations.soapNamespace) {
|
|
83
|
+
if (!soapAnnotations.soapNamespace) {
|
|
84
84
|
logger.warn(`The expected 'soapNamespace' attribute is missing in SOAP directive definition.
|
|
85
85
|
Update the SOAP source handler, and re-generate the schema.
|
|
86
86
|
Falling back to 'http://www.w3.org/2003/05/soap-envelope' as SOAP Namespace.`);
|
package/esm/executor.js
CHANGED
|
@@ -77,7 +77,7 @@ function prefixWithAlias({ alias, obj, resolverData, }) {
|
|
|
77
77
|
return obj;
|
|
78
78
|
}
|
|
79
79
|
function createRootValueMethod({ soapAnnotations, fetchFn, jsonToXMLConverter, xmlToJSONConverter, operationHeadersFactory, logger, }) {
|
|
80
|
-
if (soapAnnotations.soapNamespace) {
|
|
80
|
+
if (!soapAnnotations.soapNamespace) {
|
|
81
81
|
logger.warn(`The expected 'soapNamespace' attribute is missing in SOAP directive definition.
|
|
82
82
|
Update the SOAP source handler, and re-generate the schema.
|
|
83
83
|
Falling back to 'http://www.w3.org/2003/05/soap-envelope' as SOAP Namespace.`);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@graphql-mesh/transport-soap",
|
|
3
|
-
"version": "0.9.0
|
|
3
|
+
"version": "0.9.0",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"graphql": "*"
|
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
"@graphql-mesh/cross-helpers": "^0.4.10",
|
|
10
10
|
"@graphql-mesh/string-interpolation": "^0.5.8",
|
|
11
11
|
"@graphql-mesh/transport-common": "^0.7.13",
|
|
12
|
-
"@graphql-mesh/types": "0.103.19
|
|
13
|
-
"@graphql-mesh/utils": "0.103.19
|
|
12
|
+
"@graphql-mesh/types": "^0.103.19",
|
|
13
|
+
"@graphql-mesh/utils": "^0.103.19",
|
|
14
14
|
"@graphql-tools/executor": "^1.3.2",
|
|
15
15
|
"@graphql-tools/utils": "^10.8.0",
|
|
16
16
|
"@whatwg-node/fetch": "^0.10.4",
|