File tree Expand file tree Collapse file tree 2 files changed +0
-6
lines changed Expand file tree Collapse file tree 2 files changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -7,8 +7,6 @@ export type QueryOrder = 'asc' | 'desc' | 'none';
77export type TQueryOrderObject = { [ key : string ] : QueryOrder } ;
88export type TQueryOrderArray = Array < [ string , QueryOrder ] > ;
99
10- export type CacheMode = 'stale-if-slow' | 'stale-while-revalidate' | 'must-revalidate' | 'no-cache' ;
11-
1210export type GranularityAnnotation = {
1311 name : string ;
1412 title : string ;
@@ -117,7 +115,6 @@ export interface Query {
117115 timezone ?: string ;
118116 // @deprecated
119117 renewQuery ?: boolean ;
120- cache ?: CacheMode ;
121118 ungrouped ?: boolean ;
122119 responseFormat ?: 'compact' | 'default' ;
123120 total ?: boolean ;
Original file line number Diff line number Diff line change 1- import { CacheMode } from '@cubejs-backend/shared' ;
2-
31declare module "@cubejs-client/core" {
42
53 export type IntrospectedMeasureName = import ( './generated' ) . IntrospectedMeasureName ;
@@ -23,7 +21,6 @@ declare module "@cubejs-client/core" {
2321 timezone ?: string ;
2422 // @deprecated
2523 renewQuery ?: boolean ;
26- cache ?: CacheMode ;
2724 ungrouped ?: boolean ;
2825 }
2926
You can’t perform that action at this time.
0 commit comments