@@ -41,7 +41,6 @@ export type EnvelopeItemType =
41
41
| 'replay_event'
42
42
| 'replay_recording'
43
43
| 'check_in'
44
- | 'statsd'
45
44
| 'span'
46
45
| 'raw_security' ;
47
46
@@ -84,7 +83,6 @@ type ReplayRecordingItemHeaders = { type: 'replay_recording'; length: number };
84
83
type CheckInItemHeaders = { type : 'check_in' } ;
85
84
type ProfileItemHeaders = { type : 'profile' } ;
86
85
type ProfileChunkItemHeaders = { type : 'profile_chunk' } ;
87
- type StatsdItemHeaders = { type : 'statsd' ; length : number } ;
88
86
type SpanItemHeaders = { type : 'span' } ;
89
87
type RawSecurityHeaders = { type : 'raw_security' ; sentry_release ?: string ; sentry_environment ?: string } ;
90
88
@@ -98,7 +96,6 @@ export type ClientReportItem = BaseEnvelopeItem<ClientReportItemHeaders, ClientR
98
96
export type CheckInItem = BaseEnvelopeItem < CheckInItemHeaders , SerializedCheckIn > ;
99
97
type ReplayEventItem = BaseEnvelopeItem < ReplayEventItemHeaders , ReplayEvent > ;
100
98
type ReplayRecordingItem = BaseEnvelopeItem < ReplayRecordingItemHeaders , ReplayRecordingData > ;
101
- export type StatsdItem = BaseEnvelopeItem < StatsdItemHeaders , string > ;
102
99
export type FeedbackItem = BaseEnvelopeItem < FeedbackItemHeaders , FeedbackEvent > ;
103
100
export type ProfileItem = BaseEnvelopeItem < ProfileItemHeaders , Profile > ;
104
101
export type ProfileChunkItem = BaseEnvelopeItem < ProfileChunkItemHeaders , ProfileChunk > ;
@@ -110,7 +107,6 @@ type SessionEnvelopeHeaders = { sent_at: string };
110
107
type CheckInEnvelopeHeaders = { trace ?: DynamicSamplingContext } ;
111
108
type ClientReportEnvelopeHeaders = BaseEnvelopeHeaders ;
112
109
type ReplayEnvelopeHeaders = BaseEnvelopeHeaders ;
113
- type StatsdEnvelopeHeaders = BaseEnvelopeHeaders ;
114
110
type SpanEnvelopeHeaders = BaseEnvelopeHeaders & { trace ?: DynamicSamplingContext } ;
115
111
116
112
export type EventEnvelope = BaseEnvelope <
@@ -121,7 +117,6 @@ export type SessionEnvelope = BaseEnvelope<SessionEnvelopeHeaders, SessionItem>;
121
117
export type ClientReportEnvelope = BaseEnvelope < ClientReportEnvelopeHeaders , ClientReportItem > ;
122
118
export type ReplayEnvelope = [ ReplayEnvelopeHeaders , [ ReplayEventItem , ReplayRecordingItem ] ] ;
123
119
export type CheckInEnvelope = BaseEnvelope < CheckInEnvelopeHeaders , CheckInItem > ;
124
- export type StatsdEnvelope = BaseEnvelope < StatsdEnvelopeHeaders , StatsdItem > ;
125
120
export type SpanEnvelope = BaseEnvelope < SpanEnvelopeHeaders , SpanItem > ;
126
121
export type ProfileChunkEnvelope = BaseEnvelope < BaseEnvelopeHeaders , ProfileChunkItem > ;
127
122
export type RawSecurityEnvelope = BaseEnvelope < BaseEnvelopeHeaders , RawSecurityItem > ;
@@ -133,7 +128,6 @@ export type Envelope =
133
128
| ProfileChunkEnvelope
134
129
| ReplayEnvelope
135
130
| CheckInEnvelope
136
- | StatsdEnvelope
137
131
| SpanEnvelope
138
132
| RawSecurityEnvelope ;
139
133
0 commit comments