@cubejs-client/core 0.33.12 → 0.33.47
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.esm.js +1 -1
- package/dist/cubejs-client-core.esm.js.map +1 -1
- package/dist/cubejs-client-core.js +1 -0
- package/dist/cubejs-client-core.js.map +1 -1
- package/dist/cubejs-client-core.umd.js +1 -0
- package/dist/cubejs-client-core.umd.js.map +1 -1
- package/index.d.ts +3 -3
- package/package.json +2 -2
- package/src/index.js +1 -1
package/index.d.ts
CHANGED
|
@@ -1068,7 +1068,7 @@ declare module '@cubejs-client/core' {
|
|
|
1068
1068
|
* const context = document.getElementById('myChart');
|
|
1069
1069
|
* new Chart(context, chartjsConfig(resultSet));
|
|
1070
1070
|
* ```
|
|
1071
|
-
* @param query - [Query object](query-format)
|
|
1071
|
+
* @param query - [Query object](/product/apis-integrations/rest-api/query-format)
|
|
1072
1072
|
*/
|
|
1073
1073
|
load<QueryType extends DeeplyReadonly<Query | Query[]>>(
|
|
1074
1074
|
query: QueryType,
|
|
@@ -1084,7 +1084,7 @@ declare module '@cubejs-client/core' {
|
|
|
1084
1084
|
): Promise<ResultSet<QueryRecordType<QueryType>>>;
|
|
1085
1085
|
|
|
1086
1086
|
/**
|
|
1087
|
-
* Allows you to fetch data and receive updates over time. See [Real-Time Data Fetch](real-time-data-fetch)
|
|
1087
|
+
* Allows you to fetch data and receive updates over time. See [Real-Time Data Fetch](/product/apis-integrations/rest-api/real-time-data-fetch)
|
|
1088
1088
|
*
|
|
1089
1089
|
* ```js
|
|
1090
1090
|
* // Subscribe to a query's updates
|
|
@@ -1158,7 +1158,7 @@ declare module '@cubejs-client/core' {
|
|
|
1158
1158
|
* );
|
|
1159
1159
|
* ```
|
|
1160
1160
|
*
|
|
1161
|
-
* @param apiToken - [API token](
|
|
1161
|
+
* @param apiToken - [API token](/product/auth) is used to authorize requests and determine SQL database you're accessing. In the development mode, Cube.js Backend will print the API token to the console on startup. In case of async function `authorization` is updated for `options.transport` on each request.
|
|
1162
1162
|
* @order 1
|
|
1163
1163
|
*/
|
|
1164
1164
|
export default function cubejs(apiToken: string | (() => Promise<string>), options: CubeJSApiOptions): CubejsApi;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cubejs-client/core",
|
|
3
|
-
"version": "0.33.
|
|
3
|
+
"version": "0.33.47",
|
|
4
4
|
"engines": {},
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -45,5 +45,5 @@
|
|
|
45
45
|
"eslint-plugin-node": "^5.2.1",
|
|
46
46
|
"jest": "^26.0.1"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "56fdafca61e135266bc19d2c34497f7affcdb4da"
|
|
49
49
|
}
|
package/src/index.js
CHANGED
|
@@ -348,5 +348,5 @@ class CubejsApi {
|
|
|
348
348
|
|
|
349
349
|
export default (apiToken, options) => new CubejsApi(apiToken, options);
|
|
350
350
|
|
|
351
|
-
export { CubejsApi, HttpTransport, ResultSet, RequestError };
|
|
351
|
+
export { CubejsApi, HttpTransport, ResultSet, RequestError, Meta };
|
|
352
352
|
export * from './utils';
|