@graphql-mesh/transport-soap 0.8.12-alpha-20250115141639-803e3526c125de5895ee472922b8197b0a6d19ce → 0.8.12-alpha-20250116175218-0f16a1071472b8f2a18b2d2532b62361d79faf28

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
@@ -122,7 +122,8 @@ function createRootValueMethod({ soapAnnotations, fetchFn, jsonToXMLConverter, x
122
122
  method: 'POST',
123
123
  body: requestXML,
124
124
  headers: {
125
- 'Content-Type': 'application/soap+xml; charset=utf-8',
125
+ 'Content-Type': 'text/xml; charset=utf-8',
126
+ SOAPAction: soapAnnotations.soapAction,
126
127
  ...operationHeadersFactory({
127
128
  args,
128
129
  context,
package/esm/executor.js CHANGED
@@ -119,7 +119,8 @@ function createRootValueMethod({ soapAnnotations, fetchFn, jsonToXMLConverter, x
119
119
  method: 'POST',
120
120
  body: requestXML,
121
121
  headers: {
122
- 'Content-Type': 'application/soap+xml; charset=utf-8',
122
+ 'Content-Type': 'text/xml; charset=utf-8',
123
+ SOAPAction: soapAnnotations.soapAction,
123
124
  ...operationHeadersFactory({
124
125
  args,
125
126
  context,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graphql-mesh/transport-soap",
3
- "version": "0.8.12-alpha-20250115141639-803e3526c125de5895ee472922b8197b0a6d19ce",
3
+ "version": "0.8.12-alpha-20250116175218-0f16a1071472b8f2a18b2d2532b62361d79faf28",
4
4
  "sideEffects": false,
5
5
  "peerDependencies": {
6
6
  "graphql": "*"
@@ -9,8 +9,8 @@
9
9
  "@graphql-mesh/cross-helpers": "^0.4.9",
10
10
  "@graphql-mesh/string-interpolation": "^0.5.7",
11
11
  "@graphql-mesh/transport-common": "^0.7.13",
12
- "@graphql-mesh/types": "0.103.12-alpha-20250115141639-803e3526c125de5895ee472922b8197b0a6d19ce",
13
- "@graphql-mesh/utils": "0.103.12-alpha-20250115141639-803e3526c125de5895ee472922b8197b0a6d19ce",
12
+ "@graphql-mesh/types": "^0.103.11",
13
+ "@graphql-mesh/utils": "^0.103.11",
14
14
  "@graphql-tools/executor": "^1.3.2",
15
15
  "@graphql-tools/utils": "^10.6.0",
16
16
  "@whatwg-node/fetch": "^0.9.15 || ^0.10.0",