@@ -156,14 +156,16 @@ export declare class DefaultSubmissionClient implements ISubmissionClient {
156
156
}
157
157
export declare class Utils {
158
158
static addRange < T > ( target : T [ ] , ...values : T [ ] ) : T [ ] ;
159
- static getHashCode ( source : string ) : string ;
160
- static getCookies ( cookies : string ) : Object ;
159
+ static getHashCode ( source : string ) : number ;
160
+ static getCookies ( cookies : string , exclusions ?: string [ ] ) : Object ;
161
161
static guid ( ) : string ;
162
162
static merge ( defaultValues : Object , values : Object ) : Object ;
163
163
static parseVersion ( source : string ) : string ;
164
- static parseQueryString ( query : string ) : Object ;
164
+ static parseQueryString ( query : string , exclusions ?: string [ ] ) : Object ;
165
165
static randomNumber ( ) : number ;
166
- static stringify ( data : any , exclusions ?: string [ ] ) : string ;
166
+ static isMatch ( input : string , patterns : string [ ] ) : boolean ;
167
+ static isEmpty ( input : Object ) : boolean ;
168
+ static stringify ( data : any , exclusions ?: string [ ] , maxDepth ?: number ) : string ;
167
169
}
168
170
export declare class Configuration implements IConfigurationSettings {
169
171
private static _defaultSettings ;
@@ -223,7 +225,7 @@ export declare class EventBuilder {
223
225
setUserIdentity ( identity : string , name : string ) : EventBuilder ;
224
226
setValue ( value : number ) : EventBuilder ;
225
227
addTags ( ...tags : string [ ] ) : EventBuilder ;
226
- setProperty ( name : string , value : any ) : EventBuilder ;
228
+ setProperty ( name : string , value : any , maxDepth ?: number , excludedPropertyNames ?: string [ ] ) : EventBuilder ;
227
229
markAsCritical ( critical : boolean ) : EventBuilder ;
228
230
addRequestInfo ( request : Object ) : EventBuilder ;
229
231
submit ( callback ?: ( context : EventPluginContext ) => void ) : void ;
@@ -365,9 +367,7 @@ export declare class ConfigurationDefaultsPlugin implements IEventPlugin {
365
367
export declare class ErrorPlugin implements IEventPlugin {
366
368
priority : number ;
367
369
name : string ;
368
- ignoredProperties : string [ ] ;
369
370
run ( context : EventPluginContext , next ?: ( ) => void ) : void ;
370
- private getAdditionalData ( exception ) ;
371
371
}
372
372
export declare class ModuleInfoPlugin implements IEventPlugin {
373
373
priority : number ;
0 commit comments