File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -93,6 +93,8 @@ interface InitWithConfigStatusReport extends InitStatusReport {
9393 trap_cache_download_size_bytes : number ;
9494 /** Time taken to download TRAP caches, in milliseconds. */
9595 trap_cache_download_duration_ms : number ;
96+ /** Stringified JSON object representing a query-filters, from the 'query-filters' config field. **/
97+ query_filters : string ;
9698}
9799
98100/** Fields of the init status report populated when the tools source is `download`. */
@@ -207,6 +209,7 @@ async function sendCompletedStatusReport(
207209 await getTotalCacheSize ( config . trapCaches , logger ) ,
208210 ) ,
209211 trap_cache_download_duration_ms : Math . round ( config . trapCacheDownloadTime ) ,
212+ query_filters : JSON . stringify ( config . originalUserInput [ "query-filters" ] ) ,
210213 } ;
211214 await sendStatusReport ( {
212215 ...initWithConfigStatusReport ,
You can’t perform that action at this time.
0 commit comments