File tree Expand file tree Collapse file tree 3 files changed +3
-1
lines changed Expand file tree Collapse file tree 3 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ const CATEGORY_MAPPING: {
15
15
event : 'error' ,
16
16
transaction : 'transaction' ,
17
17
session : 'session' ,
18
+ attachment : 'attachment' ,
18
19
} ;
19
20
20
21
/** Base Transport class implementation */
Original file line number Diff line number Diff line change @@ -51,6 +51,7 @@ const CATEGORY_MAPPING: {
51
51
event : 'error' ,
52
52
transaction : 'transaction' ,
53
53
session : 'session' ,
54
+ attachment : 'attachment' ,
54
55
} ;
55
56
56
57
/** Base Transport class implementation */
Original file line number Diff line number Diff line change 1
1
/** Possible SentryRequest types that can be used to make a distinction between Sentry features */
2
- export type SentryRequestType = 'event' | 'transaction' | 'session' ;
2
+ export type SentryRequestType = 'event' | 'transaction' | 'session' | 'attachment' ;
3
3
4
4
/** A generic client request. */
5
5
export interface SentryRequest {
You can’t perform that action at this time.
0 commit comments