File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
packages/node/src/integrations Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import { extractPathForTransaction } from '@sentry/utils';
66
77import { addRequestDataToEvent , AddRequestDataToEventOptions , TransactionNamingScheme } from '../requestdata' ;
88
9- type RequestDataOptions = {
9+ type RequestDataIntegrationOptions = {
1010 /**
1111 * Controls what data is pulled from the request and added to the event
1212 */
@@ -65,12 +65,12 @@ export class RequestData implements Integration {
6565 */
6666 public name : string = RequestData . id ;
6767
68- private _options : RequestDataOptions ;
68+ private _options : RequestDataIntegrationOptions ;
6969
7070 /**
7171 * @inheritDoc
7272 */
73- public constructor ( options : Partial < RequestDataOptions > = { } ) {
73+ public constructor ( options : Partial < RequestDataIntegrationOptions > = { } ) {
7474 this . _options = {
7575 ...DEFAULT_OPTIONS ,
7676 ...options ,
@@ -142,7 +142,7 @@ export class RequestData implements Integration {
142142/** Convert `include` option to match what `addRequestDataToEvent` expects */
143143/** TODO: Can possibly be deleted once https://github.com/getsentry/sentry-javascript/issues/5718 is fixed */
144144function formatIncludeOption (
145- integrationInclude : RequestDataOptions [ 'include' ] = { } ,
145+ integrationInclude : RequestDataIntegrationOptions [ 'include' ] = { } ,
146146) : AddRequestDataToEventOptions [ 'include' ] {
147147 const { ip, user, ...requestOptions } = integrationInclude ;
148148
You can’t perform that action at this time.
0 commit comments