conductor-node 3.6.1 → 3.7.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/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "conductor-node",
3
- "version": "3.6.1",
3
+ "version": "3.7.0",
4
4
  "description": "Conductor API wrapper",
5
5
  "author": "Danny Nemer <hi@DannyNemer.com>",
6
6
  "license": "MIT",
@@ -62,8 +62,7 @@ class Client {
62
62
  }
63
63
  async request(document, variables) {
64
64
  try {
65
- const response = await this.gqlClient.request(document, variables);
66
- return response;
65
+ return await this.gqlClient.request(document, variables);
67
66
  }
68
67
  catch (error) {
69
68
  if (this.verbose) {