@cubejs-client/core 1.3.82 → 1.3.84
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/cubejs-client-core.cjs.js +3 -1
- package/dist/cubejs-client-core.cjs.js.map +1 -1
- package/dist/cubejs-client-core.umd.js +3 -1
- package/dist/cubejs-client-core.umd.js.map +1 -1
- package/dist/src/index.d.ts +5 -1
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +3 -1
- package/dist/src/types.d.ts +24 -0
- package/dist/src/types.d.ts.map +1 -1
- package/package.json +3 -3
|
@@ -3106,6 +3106,7 @@
|
|
|
3106
3106
|
return this.loadMethod(function () {
|
|
3107
3107
|
var request = _this10.request('cubesql', {
|
|
3108
3108
|
query: sqlQuery,
|
|
3109
|
+
cache: options === null || options === void 0 ? void 0 : options.cache,
|
|
3109
3110
|
method: 'POST',
|
|
3110
3111
|
signal: options === null || options === void 0 ? void 0 : options.signal,
|
|
3111
3112
|
fetchTimeout: options === null || options === void 0 ? void 0 : options.timeout
|
|
@@ -3171,7 +3172,8 @@
|
|
|
3171
3172
|
fetchTimeout: options === null || options === void 0 ? void 0 : options.timeout,
|
|
3172
3173
|
baseRequestId: uuid.v4(),
|
|
3173
3174
|
params: {
|
|
3174
|
-
query: sqlQuery
|
|
3175
|
+
query: sqlQuery,
|
|
3176
|
+
cache: options === null || options === void 0 ? void 0 : options.cache
|
|
3175
3177
|
}
|
|
3176
3178
|
});
|
|
3177
3179
|
decoder = new TextDecoder();
|