You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/cubejs-client-core/src/types.ts
+8-2Lines changed: 8 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,6 @@
1
1
importMetafrom'./Meta';
2
2
import{TimeDimensionGranularity}from'./time';
3
+
import{TransportOptions}from'./HttpTransport';
3
4
4
5
exporttypeQueryOrder='asc'|'desc'|'none';
5
6
@@ -245,11 +246,11 @@ export type PivotConfig = {
245
246
/**
246
247
* Dimensions to put on **x** or **rows** axis.
247
248
*/
248
-
x: string[];
249
+
x?: string[];
249
250
/**
250
251
* Dimensions to put on **y** or **columns** axis.
251
252
*/
252
-
y: string[];
253
+
y?: string[];
253
254
/**
254
255
* If `true` missing dates on the time dimensions will be filled with fillWithValue or `0` by default for all measures.Note: the `fillMissingDates` option set to `true` will override any **order** applied to the query
0 commit comments