@graphql-mesh/transport-soap 0.10.1 → 0.10.2

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
@@ -144,7 +144,7 @@ Falling back to 'http://www.w3.org/2003/05/soap-envelope' as SOAP Namespace.`);
144
144
  return (0, utils_2.createGraphQLError)(`Upstream HTTP Error: ${response.status}`, {
145
145
  extensions: {
146
146
  code: 'DOWNSTREAM_SERVICE_ERROR',
147
- subgraph: soapAnnotations.subgraph,
147
+ serviceName: soapAnnotations.subgraph,
148
148
  request: {
149
149
  url: soapAnnotations.endpoint,
150
150
  method: 'POST',
package/esm/executor.js CHANGED
@@ -141,7 +141,7 @@ Falling back to 'http://www.w3.org/2003/05/soap-envelope' as SOAP Namespace.`);
141
141
  return createGraphQLError(`Upstream HTTP Error: ${response.status}`, {
142
142
  extensions: {
143
143
  code: 'DOWNSTREAM_SERVICE_ERROR',
144
- subgraph: soapAnnotations.subgraph,
144
+ serviceName: soapAnnotations.subgraph,
145
145
  request: {
146
146
  url: soapAnnotations.endpoint,
147
147
  method: 'POST',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graphql-mesh/transport-soap",
3
- "version": "0.10.1",
3
+ "version": "0.10.2",
4
4
  "sideEffects": false,
5
5
  "peerDependencies": {
6
6
  "graphql": "*"