react-native-inapp-inspector 2.0.1 → 2.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.
Files changed (47) hide show
  1. package/README.md +10 -0
  2. package/android/.gradle/8.9/checksums/checksums.lock +0 -0
  3. package/android/.gradle/8.9/checksums/md5-checksums.bin +0 -0
  4. package/android/.gradle/8.9/checksums/sha1-checksums.bin +0 -0
  5. package/android/.gradle/8.9/dependencies-accessors/gc.properties +0 -0
  6. package/android/.gradle/8.9/executionHistory/executionHistory.lock +0 -0
  7. package/android/.gradle/8.9/fileChanges/last-build.bin +0 -0
  8. package/android/.gradle/8.9/fileHashes/fileHashes.lock +0 -0
  9. package/android/.gradle/8.9/gc.properties +0 -0
  10. package/android/.gradle/9.2.0/checksums/checksums.lock +0 -0
  11. package/android/.gradle/9.2.0/fileChanges/last-build.bin +0 -0
  12. package/android/.gradle/9.2.0/fileHashes/fileHashes.bin +0 -0
  13. package/android/.gradle/9.2.0/fileHashes/fileHashes.lock +0 -0
  14. package/android/.gradle/9.2.0/gc.properties +0 -0
  15. package/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
  16. package/android/.gradle/buildOutputCleanup/cache.properties +2 -0
  17. package/android/.gradle/vcs-1/gc.properties +0 -0
  18. package/android/build/reports/problems/problems-report.html +659 -0
  19. package/android/src/main/java/com/inappinspector/NetworkInspectorModule.kt +23 -0
  20. package/dist/commonjs/components/Inspector/MainScreen.js +4 -0
  21. package/dist/commonjs/components/Inspector/TelemetryConsentModal.d.ts +3 -0
  22. package/dist/commonjs/components/Inspector/TelemetryConsentModal.js +212 -0
  23. package/dist/commonjs/constants/version.d.ts +1 -1
  24. package/dist/commonjs/constants/version.js +1 -1
  25. package/dist/commonjs/helpers/index.d.ts +1 -0
  26. package/dist/commonjs/helpers/index.js +1 -0
  27. package/dist/commonjs/helpers/telemetry.d.ts +99 -0
  28. package/dist/commonjs/helpers/telemetry.js +398 -0
  29. package/dist/commonjs/index.d.ts +2 -0
  30. package/dist/commonjs/index.js +23 -1
  31. package/dist/commonjs/native/NativeInspector.d.ts +5 -0
  32. package/dist/commonjs/native/NativeInspector.js +3 -2
  33. package/dist/esm/components/Inspector/MainScreen.js +4 -0
  34. package/dist/esm/components/Inspector/TelemetryConsentModal.d.ts +3 -0
  35. package/dist/esm/components/Inspector/TelemetryConsentModal.js +175 -0
  36. package/dist/esm/constants/version.d.ts +1 -1
  37. package/dist/esm/constants/version.js +1 -1
  38. package/dist/esm/helpers/index.d.ts +1 -0
  39. package/dist/esm/helpers/index.js +1 -0
  40. package/dist/esm/helpers/telemetry.d.ts +99 -0
  41. package/dist/esm/helpers/telemetry.js +380 -0
  42. package/dist/esm/index.d.ts +2 -0
  43. package/dist/esm/index.js +13 -1
  44. package/dist/esm/native/NativeInspector.d.ts +5 -0
  45. package/dist/esm/native/NativeInspector.js +3 -2
  46. package/ios/{NetworkInspectorModule.m → NetworkInspectorModule.mm} +175 -119
  47. package/package.json +2 -2
package/README.md CHANGED
@@ -371,6 +371,16 @@ npm run android
371
371
 
372
372
  ---
373
373
 
374
+ ## 🔒 Anonymous Telemetry
375
+
376
+ `react-native-inapp-inspector` collects anonymous diagnostic usage telemetry (such as React Native framework version, OS platform, and feature interactions) to help maintainers prioritize features and track stability across architectures (e.g. Hermes vs. JSC, New Architecture vs. Paper).
377
+
378
+ - **Zero PII**: No personal data, user identities, authentication tokens, device names, or network request payloads are ever collected.
379
+ - **Fail-Safe & Non-Blocking**: Runs completely in the background without affecting app performance.
380
+ - **User Consent Dialog**: On initial launch, an in-app consent dialog prompts the developer to allow or decline anonymous telemetry.
381
+
382
+ ---
383
+
374
384
  ## 🤝 Contributing
375
385
 
376
386
  Contributions are welcome! Please check out our [Contributing Guidelines](CONTRIBUTING.md) to get started.
File without changes
File without changes
@@ -0,0 +1,2 @@
1
+ #Wed Aug 19 11:26:52 IST 2026
2
+ gradle.version=8.9
File without changes