@ohbug/browser 2.1.0 → 2.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +0 -16
- package/dist/index.js +725 -1
- package/dist/index.mjs +703 -1
- package/package.json +5 -6
package/dist/index.d.ts
CHANGED
|
@@ -15,7 +15,6 @@ interface UncaughtErrorDetail extends OhbugBaseDetail {
|
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
interface ResourceErrorDetail extends OhbugBaseDetail {
|
|
18
|
-
outerHTML: string;
|
|
19
18
|
src: string;
|
|
20
19
|
tagName: string;
|
|
21
20
|
id: string;
|
|
@@ -36,12 +35,6 @@ interface AjaxErrorDetail extends OhbugBaseDetail {
|
|
|
36
35
|
req: {
|
|
37
36
|
url: string;
|
|
38
37
|
method: string;
|
|
39
|
-
data: string | {};
|
|
40
|
-
};
|
|
41
|
-
res: {
|
|
42
|
-
response: string;
|
|
43
|
-
status: number;
|
|
44
|
-
statusText: string;
|
|
45
38
|
};
|
|
46
39
|
}
|
|
47
40
|
|
|
@@ -49,11 +42,6 @@ interface FetchErrorDetail extends OhbugBaseDetail {
|
|
|
49
42
|
req: {
|
|
50
43
|
url: string;
|
|
51
44
|
method: string;
|
|
52
|
-
data: string;
|
|
53
|
-
};
|
|
54
|
-
res: {
|
|
55
|
-
status: number;
|
|
56
|
-
statusText: string;
|
|
57
45
|
};
|
|
58
46
|
}
|
|
59
47
|
|
|
@@ -61,10 +49,6 @@ interface WebsocketErrorDetail extends OhbugBaseDetail {
|
|
|
61
49
|
url: string;
|
|
62
50
|
timeStamp: number;
|
|
63
51
|
readyState: number;
|
|
64
|
-
protocol: string;
|
|
65
|
-
extensions: string;
|
|
66
|
-
binaryType: string;
|
|
67
|
-
bufferedAmount: number;
|
|
68
52
|
}
|
|
69
53
|
|
|
70
54
|
export { AjaxErrorDetail, FetchErrorDetail, ResourceErrorDetail, UncaughtErrorDetail, UnhandledrejectionErrorDetail, UnknownErrorDetail, WebsocketErrorDetail, BrowserClient as default };
|