@cubejs-client/react 0.33.44 → 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/index.d.ts +3 -3
- package/package.json +3 -3
package/index.d.ts
CHANGED
|
@@ -116,12 +116,12 @@ declare module '@cubejs-client/react' {
|
|
|
116
116
|
|
|
117
117
|
type QueryRendererProps = {
|
|
118
118
|
/**
|
|
119
|
-
* Analytic query. [Learn more about it's format](query-format)
|
|
119
|
+
* Analytic query. [Learn more about it's format](/product/apis-integrations/rest-api/query-format)
|
|
120
120
|
*/
|
|
121
121
|
query: Query | Query[];
|
|
122
122
|
queries?: { [key: string]: Query };
|
|
123
123
|
/**
|
|
124
|
-
* Indicates whether the generated by `Cube.js` SQL Code should be requested. See [rest-api#sql](rest-api#
|
|
124
|
+
* Indicates whether the generated by `Cube.js` SQL Code should be requested. See [rest-api#sql](/reference/rest-api#v1sql). When set to `only` then only the request to [/v1/sql](/reference/rest-api#v1sql) will be performed. When set to `true` the sql request will be performed along with the query request. Will not be performed if set to `false`
|
|
125
125
|
*/
|
|
126
126
|
loadSql?: 'only' | boolean;
|
|
127
127
|
/**
|
|
@@ -459,7 +459,7 @@ declare module '@cubejs-client/react' {
|
|
|
459
459
|
*/
|
|
460
460
|
skip?: boolean;
|
|
461
461
|
/**
|
|
462
|
-
* Use continuous fetch behavior. See [Real-Time Data Fetch](real-time-data-fetch)
|
|
462
|
+
* Use continuous fetch behavior. See [Real-Time Data Fetch](/product/apis-integrations/rest-api/real-time-data-fetch)
|
|
463
463
|
*/
|
|
464
464
|
subscribe?: boolean;
|
|
465
465
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cubejs-client/react",
|
|
3
|
-
"version": "0.33.
|
|
3
|
+
"version": "0.33.47",
|
|
4
4
|
"author": "Cube Dev, Inc.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"engines": {},
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
],
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@babel/runtime": "^7.1.2",
|
|
27
|
-
"@cubejs-client/core": "^0.33.
|
|
27
|
+
"@cubejs-client/core": "^0.33.47",
|
|
28
28
|
"core-js": "^3.6.5",
|
|
29
29
|
"ramda": "^0.27.2"
|
|
30
30
|
},
|
|
@@ -42,5 +42,5 @@
|
|
|
42
42
|
"peerDependencies": {
|
|
43
43
|
"react": ">=16.10.2"
|
|
44
44
|
},
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "56fdafca61e135266bc19d2c34497f7affcdb4da"
|
|
46
46
|
}
|