react-native-inapp-inspector 2.3.7 → 2.3.8

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.
@@ -1 +1 @@
1
- export declare const LIB_VERSION = "2.3.7";
1
+ export declare const LIB_VERSION = "2.3.8";
@@ -1,4 +1,4 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.LIB_VERSION = void 0;
4
- exports.LIB_VERSION = '2.3.7';
4
+ exports.LIB_VERSION = '2.3.8';
@@ -31,6 +31,8 @@ const IGNORED_URL_PATTERNS = [
31
31
  /\/status(?:\?|$)/i,
32
32
  /127\.0\.0\.1:(?:8081|8082|8083|19000|19001|19002|3000|8000)/i,
33
33
  /localhost:(?:8081|8082|8083|19000|19001|19002|3000|8000)\/index\.bundle/i,
34
+ /google-analytics\.com\/mp\/collect/i,
35
+ /analytics\.google\.com/i,
34
36
  ];
35
37
  function shouldIgnoreUrl(url) {
36
38
  if (!url)
@@ -1 +1 @@
1
- export declare const LIB_VERSION = "2.3.7";
1
+ export declare const LIB_VERSION = "2.3.8";
@@ -1 +1 @@
1
- export const LIB_VERSION = '2.3.7';
1
+ export const LIB_VERSION = '2.3.8';
@@ -22,6 +22,8 @@ const IGNORED_URL_PATTERNS = [
22
22
  /\/status(?:\?|$)/i,
23
23
  /127\.0\.0\.1:(?:8081|8082|8083|19000|19001|19002|3000|8000)/i,
24
24
  /localhost:(?:8081|8082|8083|19000|19001|19002|3000|8000)\/index\.bundle/i,
25
+ /google-analytics\.com\/mp\/collect/i,
26
+ /analytics\.google\.com/i,
25
27
  ];
26
28
  function shouldIgnoreUrl(url) {
27
29
  if (!url)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-inapp-inspector",
3
- "version": "2.3.7",
3
+ "version": "2.3.8",
4
4
  "description": "The zero-config, all-in-one in-app debugger for React Native & Expo. Inspect Network (fetch/axios), Console logs, Stack Traces, Redux State, Firebase Analytics, and JS Bundle size directly on device.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -1,3 +1,3 @@
1
1
  // AUTO-GENERATED FILE — do not edit by hand.
2
2
  // Regenerated from package.json on every build by scripts/gen-version.js.
3
- export const LIB_VERSION = '2.3.7';
3
+ export const LIB_VERSION = '2.3.8';
@@ -47,6 +47,8 @@ const IGNORED_URL_PATTERNS: RegExp[] = [
47
47
  /\/status(?:\?|$)/i,
48
48
  /127\.0\.0\.1:(?:8081|8082|8083|19000|19001|19002|3000|8000)/i,
49
49
  /localhost:(?:8081|8082|8083|19000|19001|19002|3000|8000)\/index\.bundle/i,
50
+ /google-analytics\.com\/mp\/collect/i,
51
+ /analytics\.google\.com/i,
50
52
  ];
51
53
 
52
54
  function shouldIgnoreUrl(url: string | undefined | null): boolean {