We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent beded07 commit dccbb3eCopy full SHA for dccbb3e
packages/core/src/integrations/requestdata.ts
@@ -50,7 +50,7 @@ const DEFAULT_OPTIONS = {
50
email: true,
51
},
52
53
- transactionNamingScheme: 'methodPath',
+ transactionNamingScheme: 'methodPath' as const,
54
};
55
56
const INTEGRATION_NAME = 'RequestData';
@@ -61,9 +61,6 @@ const _requestDataIntegration = ((options: RequestDataIntegrationOptions = {}) =
61
...DEFAULT_OPTIONS,
62
...options,
63
include: {
64
- // @ts-expect-error It's mad because `method` isn't a known `include` key. (It's only here and not set by default in
65
- // `addRequestDataToEvent` for legacy reasons. TODO (v8): Change that.)
66
- method: true,
67
...DEFAULT_OPTIONS.include,
68
...options.include,
69
user:
0 commit comments