@graphql-mesh/transport-soap 0.8.12-alpha-20250120182707-5fae76cd35c9603d684ec2600d99f6b2d8867935 → 0.8.12-alpha-20250120183048-021894aa57be8ed471b930190cbdb32cdf2d996c

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-20250120182707-5fae76cd35c9603d684ec2600d99f6b2d8867935",
3
+ "version": "0.8.12-alpha-20250120183048-021894aa57be8ed471b930190cbdb32cdf2d996c",
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-20250120182707-5fae76cd35c9603d684ec2600d99f6b2d8867935",
13
- "@graphql-mesh/utils": "0.103.12-alpha-20250120182707-5fae76cd35c9603d684ec2600d99f6b2d8867935",
12
+ "@graphql-mesh/types": "0.103.12-alpha-20250120183048-021894aa57be8ed471b930190cbdb32cdf2d996c",
13
+ "@graphql-mesh/utils": "0.103.12-alpha-20250120183048-021894aa57be8ed471b930190cbdb32cdf2d996c",
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",