forked from rollbar/rollbar.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.d.ts
163 lines (151 loc) · 6.03 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
// Type definitions for rollbar
// Project: Rollbar
export = Rollbar;
declare class Rollbar {
constructor(options?: Rollbar.Configuration);
static init(options: Rollbar.Configuration): Rollbar;
static setComponents(components: Rollbar.Components): void;
public global(options: Rollbar.Configuration): Rollbar;
public configure(options: Rollbar.Configuration): Rollbar;
public lastError(): Rollbar.MaybeError;
public log(...args: Rollbar.LogArgument[]): Rollbar.LogResult;
public debug(...args: Rollbar.LogArgument[]): Rollbar.LogResult;
public info(...args: Rollbar.LogArgument[]): Rollbar.LogResult;
public warn(...args: Rollbar.LogArgument[]): Rollbar.LogResult;
public warning(...args: Rollbar.LogArgument[]): Rollbar.LogResult;
public error(...args: Rollbar.LogArgument[]): Rollbar.LogResult;
public critical(...args: Rollbar.LogArgument[]): Rollbar.LogResult;
public wait(callback: () => void): void;
public captureEvent(metadata: object, level: Rollbar.Level): Rollbar.TelemetryEvent;
public lambdaHandler<T = object>(handler: Rollbar.LambdaHandler<T>): Rollbar.LambdaHandler<T>;
public errorHandler(): Rollbar.ExpressErrorHandler;
// Exposed only for testing, should be changed via the configure method
// DO NOT MODIFY DIRECTLY
public options: Rollbar.Configuration;
}
declare namespace Rollbar {
export type LambdaHandler<TEvent = any, TResult = any, TContext = any> = (
event: TEvent,
context: TContext,
callback: Callback<TResult>,
) => void | Promise<TResult>;
export type MaybeError = Error | undefined | null;
export type Level = "debug" | "info" | "warning" | "error" | "critical";
export interface Configuration {
accessToken?: string;
addErrorContext?: boolean;
addRequestData?: (data: object, req: object) => void;
autoInstrument?: AutoInstrumentOptions;
captureEmail?: boolean;
captureIp?: boolean | "anonymize";
captureLambdaTimeouts?: boolean;
captureUncaught?: boolean;
captureUnhandledRejections?: boolean;
captureUsername?: boolean;
checkIgnore?: (isUncaught: boolean, args: LogArgument[], item: object) => boolean;
codeVersion?: string;
code_version?: string;
enabled?: boolean;
endpoint?: string;
exitOnUncaughtException?: boolean;
environment?: string;
filterTelemetry?: (e: TelemetryEvent) => boolean;
host?: string; // used in node only
hostBlackList?: string[]; // deprecated
hostBlockList?: string[];
hostWhiteList?: string[]; // deprecated
hostSafeList?: string[];
ignoredMessages?: string[];
ignoreDuplicateErrors?: boolean;
includeItemsInTelemetry?: boolean;
inspectAnonymousErrors?: boolean;
itemsPerMinute?: number;
locals?: LocalsOptions;
logLevel?: Level;
maxItems?: number;
maxTelemetryEvents?: number;
nodeSourceMaps?: boolean;
onSendCallback?: (isUncaught: boolean, args: LogArgument[], item: object) => void;
overwriteScrubFields?: boolean;
payload?: object;
reportLevel?: Level;
rewriteFilenamePatterns?: string[];
scrubFields?: string[];
scrubHeaders?: string[];
scrubPaths?: string[];
scrubRequestBody?: boolean;
scrubTelemetryInputs?: boolean;
sendConfig?: boolean;
stackTraceLimit?: number;
telemetryScrubber?: TelemetryScrubber;
transform?: (data: object) => void;
transmit?: boolean;
uncaughtErrorLevel?: Level;
verbose?: boolean;
version?: string;
wrapGlobalEventHandlers?: boolean;
}
export type Callback<TResponse = any> = (err: MaybeError, response: TResponse) => void;
export type LogArgument = string | Error | object | Callback | Date | any[] | undefined;
export interface LogResult {
uuid: string;
}
export interface TelemetryEvent {
level: Level;
type: string;
timestamp_ms: number;
body: object;
source: string;
uuid?: string;
}
export type AutoInstrumentOptions = boolean | AutoInstrumentSettings;
export interface AutoInstrumentSettings {
network?: boolean;
networkResponseHeaders?: boolean | string[];
networkResponseBody?: boolean;
networkRequestBody?: boolean;
log?: boolean;
dom?: boolean;
navigation?: boolean;
connectivity?: boolean;
}
export type TelemetryScrubber = (description: TelemetryScrubberInput) => boolean;
export type TelemetryScrubberInput = DomDescription | null;
export interface DomDescription {
tagName: string;
id: string | undefined;
classes: string[] | undefined;
attributes: DomAttribute[];
}
export type DomAttributeKey = "type" | "name" | "title" | "alt";
export interface DomAttribute {
key: DomAttributeKey;
value: string;
}
export type ExpressErrorHandler = (err: any, request: any, response: any, next: ExpressNextFunction) => any;
export interface ExpressNextFunction {
(err?: any): void;
}
export type LocalsOptions = boolean | LocalsSettings;
export interface LocalsSettings {
depth?: number;
maxProperties?: number;
maxArray?: number;
}
class Telemeter {}
class Instrumenter {}
export type TelemeterType = typeof Telemeter;
export type InstrumenterType = typeof Instrumenter;
export type TruncationType = object;
export type ScrubType = (data: object, scrubFields?: string[], scrubPaths?: string[]) => object;
export type WrapGlobalsType = (window?: any, handler?: any, shim?: any) => void;
export type PolyfillJSONType = (JSON: any) => any;
export interface Components {
telemeter?: TelemeterType,
instrumenter?: InstrumenterType,
polyfillJSON?: PolyfillJSONType,
wrapGlobals?: WrapGlobalsType,
scrub?: ScrubType,
truncation?: TruncationType
}
}