File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
packages/cubejs-server-core/core Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -21,14 +21,14 @@ declare module "@cubejs-backend/server-core" {
21
21
contextToDataSourceId ?: ( context : RequestContext ) => string ;
22
22
repositoryFactory ?: ( context : RequestContext ) => SchemaFileRepository ;
23
23
checkAuthMiddleware ?: (
24
- req : Request ,
25
- res : Response ,
26
- next : NextFunction
24
+ req : ExpressRequest ,
25
+ res : ExpressResponse ,
26
+ next : ExpressNextFunction
27
27
) => void ;
28
28
queryTransformer ?: ( query : Query , context : RequestContext ) => Query ;
29
29
preAggregationsSchema ?: String | ( ( context : RequestContext ) => string ) ;
30
30
schemaVersion ?: ( context : RequestContext ) => string ;
31
- extendContext ?: ( req : Request ) => any ;
31
+ extendContext ?: ( req : ExpressRequest ) => any ;
32
32
scheduledRefreshTimer ?: boolean | number ;
33
33
compilerCacheSize ?: number ;
34
34
maxCompilerCacheKeepAlive ?: number ;
@@ -141,7 +141,7 @@ declare module "@cubejs-backend/server-core" {
141
141
limit ?: number ;
142
142
offset ?: number ;
143
143
order ?: "asc" | "desc" ;
144
- timezone ?: Date ;
144
+ timezone ?: string ;
145
145
renewQuery ?: boolean ;
146
146
ungrouped ?: boolean ;
147
147
}
You can’t perform that action at this time.
0 commit comments