We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abe4b13 commit 6adf49aCopy full SHA for 6adf49a
.github/workflows/publish.yml
@@ -30,5 +30,6 @@ jobs:
30
- name: Publish
31
run: |
32
echo "$NPMRC" > ~/.npmrc
33
+ npm install --save-dev babel-cli
34
npm publish
35
src/api/UtilsApi.js
@@ -50,7 +50,9 @@ export default class UtilsApi {
50
if (body === undefined || body === null) {
51
throw new Error("Missing the required parameter 'body' when calling sql");
52
}
53
-
+ if (!('rawResponse' in opts)) {
54
+ opts['rawResponse'] = true;
55
+ }
56
let pathParams = {
57
};
58
let queryParams = {
0 commit comments