Skip to content

Commit 5806f96

Browse files
committed
Code style and generated files
1 parent 19aba22 commit 5806f96

10 files changed

+274
-141
lines changed

dist/exceptionless.d.ts

+38-30
Original file line numberDiff line numberDiff line change
@@ -326,6 +326,37 @@ export interface IEnvironmentInfo {
326326
runtime_version?: string;
327327
data?: any;
328328
}
329+
export interface IParameter {
330+
data?: any;
331+
generic_arguments?: string[];
332+
name?: string;
333+
type?: string;
334+
type_namespace?: string;
335+
}
336+
export interface IMethod {
337+
data?: any;
338+
generic_arguments?: string[];
339+
parameters?: IParameter[];
340+
is_signature_target?: boolean;
341+
declaring_namespace?: string;
342+
declaring_type?: string;
343+
name?: string;
344+
module_id?: number;
345+
}
346+
export interface IStackFrame extends IMethod {
347+
file_name?: string;
348+
line_number?: number;
349+
column?: number;
350+
}
351+
export interface IInnerError {
352+
message?: string;
353+
type?: string;
354+
code?: string;
355+
data?: any;
356+
inner?: IInnerError;
357+
stack_trace?: IStackFrame[];
358+
target_method?: IMethod;
359+
}
329360
export declare class ConfigurationDefaultsPlugin implements IEventPlugin {
330361
priority: number;
331362
name: string;
@@ -358,36 +389,13 @@ export declare class SubmissionMethodPlugin implements IEventPlugin {
358389
name: string;
359390
run(context: EventPluginContext, next?: () => void): void;
360391
}
361-
export interface IParameter {
362-
data?: any;
363-
generic_arguments?: string[];
364-
name?: string;
365-
type?: string;
366-
type_namespace?: string;
367-
}
368-
export interface IMethod {
369-
data?: any;
370-
generic_arguments?: string[];
371-
parameters?: IParameter[];
372-
is_signature_target?: boolean;
373-
declaring_namespace?: string;
374-
declaring_type?: string;
375-
name?: string;
376-
module_id?: number;
377-
}
378-
export interface IStackFrame extends IMethod {
379-
file_name?: string;
380-
line_number?: number;
381-
column?: number;
382-
}
383-
export interface IInnerError {
384-
message?: string;
385-
type?: string;
386-
code?: string;
387-
data?: any;
388-
inner?: IInnerError;
389-
stack_trace?: IStackFrame[];
390-
target_method?: IMethod;
392+
export declare class DuplicateCheckerPlugin implements IEventPlugin {
393+
priority: number;
394+
name: string;
395+
private recentlyProcessedErrors;
396+
run(context: EventPluginContext, next?: () => void): void;
397+
private getNow();
398+
private checkDuplicate(error, log);
391399
}
392400
export interface IError extends IInnerError {
393401
modules?: IModule[];

dist/exceptionless.js

+66-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/exceptionless.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/exceptionless.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/exceptionless.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/exceptionless.node.js

+66-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/exceptionless.node.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)