@@ -41,7 +41,6 @@ export type EnvelopeItemType =
4141 | 'replay_event'
4242 | 'replay_recording'
4343 | 'check_in'
44- | 'statsd'
4544 | 'span'
4645 | 'raw_security' ;
4746
@@ -84,7 +83,6 @@ type ReplayRecordingItemHeaders = { type: 'replay_recording'; length: number };
8483type CheckInItemHeaders = { type : 'check_in' } ;
8584type ProfileItemHeaders = { type : 'profile' } ;
8685type ProfileChunkItemHeaders = { type : 'profile_chunk' } ;
87- type StatsdItemHeaders = { type : 'statsd' ; length : number } ;
8886type SpanItemHeaders = { type : 'span' } ;
8987type RawSecurityHeaders = { type : 'raw_security' ; sentry_release ?: string ; sentry_environment ?: string } ;
9088
@@ -98,7 +96,6 @@ export type ClientReportItem = BaseEnvelopeItem<ClientReportItemHeaders, ClientR
9896export type CheckInItem = BaseEnvelopeItem < CheckInItemHeaders , SerializedCheckIn > ;
9997type ReplayEventItem = BaseEnvelopeItem < ReplayEventItemHeaders , ReplayEvent > ;
10098type ReplayRecordingItem = BaseEnvelopeItem < ReplayRecordingItemHeaders , ReplayRecordingData > ;
101- export type StatsdItem = BaseEnvelopeItem < StatsdItemHeaders , string > ;
10299export type FeedbackItem = BaseEnvelopeItem < FeedbackItemHeaders , FeedbackEvent > ;
103100export type ProfileItem = BaseEnvelopeItem < ProfileItemHeaders , Profile > ;
104101export type ProfileChunkItem = BaseEnvelopeItem < ProfileChunkItemHeaders , ProfileChunk > ;
@@ -110,7 +107,6 @@ type SessionEnvelopeHeaders = { sent_at: string };
110107type CheckInEnvelopeHeaders = { trace ?: DynamicSamplingContext } ;
111108type ClientReportEnvelopeHeaders = BaseEnvelopeHeaders ;
112109type ReplayEnvelopeHeaders = BaseEnvelopeHeaders ;
113- type StatsdEnvelopeHeaders = BaseEnvelopeHeaders ;
114110type SpanEnvelopeHeaders = BaseEnvelopeHeaders & { trace ?: DynamicSamplingContext } ;
115111
116112export type EventEnvelope = BaseEnvelope <
@@ -121,7 +117,6 @@ export type SessionEnvelope = BaseEnvelope<SessionEnvelopeHeaders, SessionItem>;
121117export type ClientReportEnvelope = BaseEnvelope < ClientReportEnvelopeHeaders , ClientReportItem > ;
122118export type ReplayEnvelope = [ ReplayEnvelopeHeaders , [ ReplayEventItem , ReplayRecordingItem ] ] ;
123119export type CheckInEnvelope = BaseEnvelope < CheckInEnvelopeHeaders , CheckInItem > ;
124- export type StatsdEnvelope = BaseEnvelope < StatsdEnvelopeHeaders , StatsdItem > ;
125120export type SpanEnvelope = BaseEnvelope < SpanEnvelopeHeaders , SpanItem > ;
126121export type ProfileChunkEnvelope = BaseEnvelope < BaseEnvelopeHeaders , ProfileChunkItem > ;
127122export type RawSecurityEnvelope = BaseEnvelope < BaseEnvelopeHeaders , RawSecurityItem > ;
@@ -133,7 +128,6 @@ export type Envelope =
133128 | ProfileChunkEnvelope
134129 | ReplayEnvelope
135130 | CheckInEnvelope
136- | StatsdEnvelope
137131 | SpanEnvelope
138132 | RawSecurityEnvelope ;
139133
0 commit comments