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/spec/src/contracts/analytics-service.ts
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -17,10 +17,10 @@
17
17
* An analytical query definition
18
18
*/
19
19
exportinterfaceAnalyticsQuery{
20
-
/** Target cube name */
21
-
cube: string;
20
+
/** Target cube name. Optional when cube is specified at a higher level (e.g. API request wrapper or cube-scoped endpoint). Implementations should validate presence at runtime. */
21
+
cube?: string;
22
22
/** Measures to compute (e.g. ['orders.count', 'orders.totalRevenue']) */
23
-
measures?: string[];
23
+
measures: string[];
24
24
/** Dimensions to group by (e.g. ['orders.status', 'orders.createdAt']) */
0 commit comments