We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c38d25e commit 4199f08Copy full SHA for 4199f08
CHANGELOG.md
@@ -1,5 +1,9 @@
1
# Changelog
2
3
+## Unreleased
4
+
5
+- [types] fix: Breadcrumb `data` needs to be an object
6
7
## 5.6.3
8
9
- [browser] fix: Don't capture our own XHR events that somehow bubbled-up to global handler
package.json
@@ -13,7 +13,7 @@
13
"test": "lerna run --stream --concurrency 1 --sort test",
14
"codecov": "codecov"
15
},
16
- "toolchain": {
+ "volta": {
17
"node": "10.15.3",
18
"yarn": "1.13.0"
19
packages/types/src/breadcrumb.ts
@@ -7,7 +7,7 @@ export interface Breadcrumb {
event_id?: string;
category?: string;
message?: string;
10
- data?: any;
+ data?: { [key: string]: any };
11
timestamp?: number;
12
}
0 commit comments