@umituz/react-native-sentry 1.1.0 → 1.1.1

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.1.0",
3
+ "version": "1.1.1",
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",
package/src/index.ts CHANGED
@@ -37,10 +37,10 @@ export type { UseSentryReturn } from './presentation/hooks/useSentry';
37
37
  export { useBreadcrumb } from './presentation/hooks/useBreadcrumb';
38
38
  export type { UseBreadcrumbReturn } from './presentation/hooks/useBreadcrumb';
39
39
 
40
- // Package Tracking Utilities (for use in other packages)
40
+ // Sentry Tracking Utilities (for use in other packages)
41
41
  export {
42
42
  trackPackageError,
43
43
  addPackageBreadcrumb,
44
44
  trackPackageWarning,
45
- } from './presentation/utils/packageTracking';
46
- export type { PackageErrorContext } from './presentation/utils/packageTracking';
45
+ } from './presentation/utils/sentryTracking';
46
+ export type { PackageErrorContext } from './presentation/utils/sentryTracking';
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Package Error Tracking Utility
2
+ * Sentry Tracking Utilities
3
3
  * Reusable error tracking for ANY package that needs Sentry integration
4
4
  *
5
5
  * Usage in packages: