@@ -147,8 +147,10 @@ export declare class Utils {
147147export interface IConfigurationSettings {
148148 apiKey ?: string ;
149149 serverUrl ?: string ;
150+ configServerUrl ?: string ;
150151 heartbeatServerUrl ?: string ;
151152 updateSettingsWhenIdleInterval ?: number ;
153+ includePrivateInformation ?: boolean ;
152154 environmentInfoCollector ?: IEnvironmentInfoCollector ;
153155 errorParser ?: IErrorParser ;
154156 lastReferenceIdManager ?: ILastReferenceIdManager ;
@@ -162,6 +164,7 @@ export interface IConfigurationSettings {
162164 queue ?: IEventQueue ;
163165}
164166export declare class SettingsManager {
167+ private static _isUpdatingSettings ;
165168 private static _handlers ;
166169 static onChanged ( handler : ( config : Configuration ) => void ) : void ;
167170 static applySavedServerSettings ( config : Configuration ) : void ;
@@ -349,20 +352,36 @@ export declare class Configuration implements IConfigurationSettings {
349352 queue : IEventQueue ;
350353 private _apiKey ;
351354 private _serverUrl ;
355+ private _configServerUrl ;
352356 private _heartbeatServerUrl ;
353357 private _updateSettingsWhenIdleInterval ;
354358 private _dataExclusions ;
359+ private _includePrivateInformation ;
360+ private _includeUserName ;
361+ private _includeMachineName ;
362+ private _includeIpAddress ;
363+ private _includeCookies ;
364+ private _includePostData ;
365+ private _includeQueryString ;
355366 private _userAgentBotPatterns ;
356367 private _plugins ;
357368 private _handlers ;
358369 constructor ( configSettings ?: IConfigurationSettings ) ;
359370 apiKey : string ;
360371 readonly isValid : boolean ;
361372 serverUrl : string ;
373+ configServerUrl : string ;
362374 heartbeatServerUrl : string ;
363375 updateSettingsWhenIdleInterval : number ;
364376 readonly dataExclusions : string [ ] ;
365377 addDataExclusions ( ...exclusions : string [ ] ) : void ;
378+ includePrivateInformation : boolean ;
379+ includeUserName : boolean ;
380+ includeMachineName : boolean ;
381+ includeIpAddress : boolean ;
382+ includeCookies : boolean ;
383+ includePostData : boolean ;
384+ includeQueryString : boolean ;
366385 readonly userAgentBotPatterns : string [ ] ;
367386 addUserAgentBotPatterns ( ...userAgentBotPatterns : string [ ] ) : void ;
368387 readonly plugins : IEventPlugin [ ] ;
0 commit comments