@graphql-mesh/transport-soap 0.8.18 → 0.9.0-alpha-20250222105654-6a9788f8d26ce4a03f3c21a78f3e580203cc0640

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 CHANGED
@@ -81,7 +81,7 @@ function prefixWithAlias({ alias, obj, resolverData, }) {
81
81
  function createRootValueMethod({ soapAnnotations, fetchFn, jsonToXMLConverter, xmlToJSONConverter, operationHeadersFactory, }) {
82
82
  return async function rootValueMethod(args, context, info) {
83
83
  const envelopeAttributes = {
84
- 'xmlns:soap': 'http://www.w3.org/2003/05/soap-envelope',
84
+ 'xmlns:soap': soapAnnotations.soapNamespace,
85
85
  };
86
86
  const envelope = {
87
87
  attributes: envelopeAttributes,
package/esm/executor.js CHANGED
@@ -78,7 +78,7 @@ function prefixWithAlias({ alias, obj, resolverData, }) {
78
78
  function createRootValueMethod({ soapAnnotations, fetchFn, jsonToXMLConverter, xmlToJSONConverter, operationHeadersFactory, }) {
79
79
  return async function rootValueMethod(args, context, info) {
80
80
  const envelopeAttributes = {
81
- 'xmlns:soap': 'http://www.w3.org/2003/05/soap-envelope',
81
+ 'xmlns:soap': soapAnnotations.soapNamespace,
82
82
  };
83
83
  const envelope = {
84
84
  attributes: envelopeAttributes,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graphql-mesh/transport-soap",
3
- "version": "0.8.18",
3
+ "version": "0.9.0-alpha-20250222105654-6a9788f8d26ce4a03f3c21a78f3e580203cc0640",
4
4
  "sideEffects": false,
5
5
  "peerDependencies": {
6
6
  "graphql": "*"