@umituz/react-native-sentry 1.0.1 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umituz/react-native-sentry",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Production-ready error tracking and performance monitoring for React Native apps",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./src/index.ts",
@@ -39,7 +39,7 @@ export interface SentryConfig {
39
39
  * Enable automatic session tracking
40
40
  * Default: true
41
41
  */
42
- autoSessionTracking?: boolean;
42
+ enableAutoSessionTracking?: boolean;
43
43
 
44
44
  /**
45
45
  * Attach screenshot on errors (production only)
@@ -26,7 +26,7 @@ export const nativeSentryAdapter: NativeSentryAdapter = {
26
26
  release: config.release,
27
27
  tracesSampleRate: config.tracesSampleRate ?? 0.1,
28
28
  enableNative: config.enableNative ?? true,
29
- autoSessionTracking: config.autoSessionTracking ?? true,
29
+ enableAutoSessionTracking: config.enableAutoSessionTracking ?? true,
30
30
  attachScreenshot: config.attachScreenshot ?? false,
31
31
  maxBreadcrumbs: config.maxBreadcrumbs ?? 100,
32
32
  debug: config.debug ?? false,