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 */
@@ -69,12 +69,12 @@ export class RequestData implements Integration {
6969 */
7070 public name : string = RequestData . id ;
7171
72- private _options : RequestDataOptions ;
72+ private _options : RequestDataIntegrationOptions ;
7373
7474 /**
7575 * @inheritDoc
7676 */
77- public constructor ( options : Partial < RequestDataOptions > = { } ) {
77+ public constructor ( options : Partial < RequestDataIntegrationOptions > = { } ) {
7878 this . _options = {
7979 ...DEFAULT_OPTIONS ,
8080 ...options ,
@@ -154,7 +154,7 @@ export class RequestData implements Integration {
154154/** Convert `include` option to match what `addRequestDataToEvent` expects */
155155/** TODO: Can possibly be deleted once https://github.com/getsentry/sentry-javascript/issues/5718 is fixed */
156156function formatIncludeOption (
157- integrationInclude : RequestDataOptions [ 'include' ] = { } ,
157+ integrationInclude : RequestDataIntegrationOptions [ 'include' ] = { } ,
158158) : AddRequestDataToEventOptions [ 'include' ] {
159159 const { ip, user, ...requestOptions } = integrationInclude ;
160160
You can’t perform that action at this time.
0 commit comments