File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 4
4
5
5
- [ browser] fix: Fallback to Error object when rejection ` reason ` is not available
6
6
- [ browser] feat: Support Bluebird's ` detail.reason ` for promise rejections
7
+ - [ types] fix: Use correct type for event's repos attribute
7
8
8
9
## 4.0.5
9
10
Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ export interface Options {
86
86
environment ?: string ;
87
87
88
88
/** Configures the repository spec for events */
89
- repos ?: Repo [ ] ;
89
+ repos ?: Record < string , Repo > ;
90
90
91
91
/** Sets the distribution for all events */
92
92
dist ?: string ;
Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ export interface SentryEvent {
172
172
logger ?: string ;
173
173
server_name ?: string ;
174
174
release ?: string ;
175
- repos ?: Repo [ ] ;
175
+ repos ?: Record < string , Repo > ,
176
176
dist ?: string ;
177
177
environment ?: string ;
178
178
sdk ?: SdkInfo ;
You can’t perform that action at this time.
0 commit comments