Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
132 changes: 88 additions & 44 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@thoughtspot/rise",
"version": "0.7.18",
"version": "0.7.19",
"description": "Rise above the REST with GraphQL",
"main": "dist/index.js",
"scripts": {
Expand Down Expand Up @@ -28,7 +28,7 @@
"dependencies": {
"@graphql-tools/schema": "^9.0.4",
"@graphql-tools/utils": "^8.12.0",
"form-data": "^4.0.0",
"form-data": "^4.0.4",
"graphql": "16.9",
"lodash": "^4.17.21",
"node-fetch": "^2.6.7"
Expand Down
1 change: 1 addition & 0 deletions src/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
'x-nginx-localhost',
'x-ua-compatible',
'x-xss-protection',
'x-csrf-token',
];

export const commonDefs = `
Expand Down Expand Up @@ -126,11 +127,11 @@
if (typeof responseKeyFormat === 'string') {
try {
const parsed = JSON.parse(responseKeyFormat);
console.debug('[Rise] Parsed responseKeyFormat:', parsed);

Check warning on line 130 in src/common.ts

View workflow job for this annotation

GitHub Actions / build (16.x)

Unexpected console statement
return parsed;
} catch (error) {
console.error('[Rise] Failed to parse responseKeyFormat as JSON:', error);

Check warning on line 133 in src/common.ts

View workflow job for this annotation

GitHub Actions / build (16.x)

Unexpected console statement
console.error('[Rise] Invalid responseKeyFormat:', responseKeyFormat);

Check warning on line 134 in src/common.ts

View workflow job for this annotation

GitHub Actions / build (16.x)

Unexpected console statement
return {};
}
}
Expand Down Expand Up @@ -162,6 +163,6 @@
return undefined;
},
});
console.debug('[Rise] Renamed fields in query:', updatedAst);

Check warning on line 166 in src/common.ts

View workflow job for this annotation

GitHub Actions / build (16.x)

Unexpected console statement
return print(updatedAst);
}
Loading