File tree Expand file tree Collapse file tree 10 files changed +1
-24
lines changed
Expand file tree Collapse file tree 10 files changed +1
-24
lines changed Original file line number Diff line number Diff line change @@ -131,6 +131,7 @@ Sentry.init({
131131- The ` flatten ` export has been removed. There is no replacement.
132132- The ` urlEncode ` method has been removed. There is no replacement.
133133- The ` getDomElement ` method has been removed. There is no replacement.
134+ - The ` Request ` type has been removed. Use ` RequestEventData ` type instead.
134135
135136### ` @sentry/browser `
136137
Original file line number Diff line number Diff line change 11export type {
22 Breadcrumb ,
33 BreadcrumbHint ,
4- // eslint-disable-next-line deprecation/deprecation
5- Request ,
64 RequestEventData ,
75 SdkInfo ,
86 Event ,
Original file line number Diff line number Diff line change @@ -2,8 +2,6 @@ export type {
22 Breadcrumb ,
33 BreadcrumbHint ,
44 PolymorphicRequest ,
5- // eslint-disable-next-line deprecation/deprecation
6- Request ,
75 RequestEventData ,
86 SdkInfo ,
97 Event ,
Original file line number Diff line number Diff line change @@ -2,8 +2,6 @@ export type {
22 Breadcrumb ,
33 BreadcrumbHint ,
44 PolymorphicRequest ,
5- // eslint-disable-next-line deprecation/deprecation
6- Request ,
75 RequestEventData ,
86 SdkInfo ,
97 Event ,
Original file line number Diff line number Diff line change @@ -90,8 +90,6 @@ export type {
9090export type {
9191 QueryParams ,
9292 RequestEventData ,
93- // eslint-disable-next-line deprecation/deprecation
94- Request ,
9593 SanitizedRequestData ,
9694} from './request' ;
9795export type { Runtime } from './runtime' ;
Original file line number Diff line number Diff line change @@ -11,12 +11,6 @@ export interface RequestEventData {
1111 headers ?: { [ key : string ] : string } ;
1212}
1313
14- /**
15- * Request data included in an event as sent to Sentry.
16- * @deprecated : This type will be removed in v9. Use `RequestEventData` instead.
17- */
18- export type Request = RequestEventData ;
19-
2014export type QueryParams = string | { [ key : string ] : string } | Array < [ string , string ] > ;
2115
2216/**
Original file line number Diff line number Diff line change @@ -2,8 +2,6 @@ export type {
22 Breadcrumb ,
33 BreadcrumbHint ,
44 PolymorphicRequest ,
5- // eslint-disable-next-line deprecation/deprecation
6- Request ,
75 RequestEventData ,
86 SdkInfo ,
97 Event ,
Original file line number Diff line number Diff line change @@ -138,8 +138,6 @@ export type {
138138 Breadcrumb ,
139139 BreadcrumbHint ,
140140 PolymorphicRequest ,
141- // eslint-disable-next-line deprecation/deprecation
142- Request ,
143141 RequestEventData ,
144142 SdkInfo ,
145143 Event ,
Original file line number Diff line number Diff line change @@ -107,7 +107,6 @@ import type {
107107 ReplayEvent as ReplayEvent_imported ,
108108 ReplayRecordingData as ReplayRecordingData_imported ,
109109 ReplayRecordingMode as ReplayRecordingMode_imported ,
110- Request as Request_imported ,
111110 RequestEventData as RequestEventData_imported ,
112111 Runtime as Runtime_imported ,
113112 SamplingContext as SamplingContext_imported ,
@@ -379,9 +378,6 @@ export type QueryParams = QueryParams_imported;
379378/** @deprecated This type has been moved to `@sentry/core`. */
380379export type RequestEventData = RequestEventData_imported ;
381380/** @deprecated This type has been moved to `@sentry/core`. */
382- // eslint-disable-next-line deprecation/deprecation
383- export type Request = Request_imported ;
384- /** @deprecated This type has been moved to `@sentry/core`. */
385381export type SanitizedRequestData = SanitizedRequestData_imported ;
386382/** @deprecated This type has been moved to `@sentry/core`. */
387383export type Runtime = Runtime_imported ;
Original file line number Diff line number Diff line change @@ -2,8 +2,6 @@ export type {
22 Breadcrumb ,
33 BreadcrumbHint ,
44 PolymorphicRequest ,
5- // eslint-disable-next-line deprecation/deprecation
6- Request ,
75 RequestEventData ,
86 SdkInfo ,
97 Event ,
You can’t perform that action at this time.
0 commit comments