Skip to content

Commit 6adf49a

Browse files
committed
Regenerated the client
1 parent abe4b13 commit 6adf49a

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,6 @@ jobs:
3030
- name: Publish
3131
run: |
3232
echo "$NPMRC" > ~/.npmrc
33+
npm install --save-dev babel-cli
3334
npm publish
3435

src/api/UtilsApi.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,9 @@ export default class UtilsApi {
5050
if (body === undefined || body === null) {
5151
throw new Error("Missing the required parameter 'body' when calling sql");
5252
}
53-
53+
if (!('rawResponse' in opts)) {
54+
opts['rawResponse'] = true;
55+
}
5456
let pathParams = {
5557
};
5658
let queryParams = {

0 commit comments

Comments
 (0)