apps-sdk 1.1.84 → 1.1.85

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": "apps-sdk",
3
- "version": "1.1.84",
3
+ "version": "1.1.85",
4
4
  "description": "Apps SDK",
5
5
  "main": "index.js",
6
6
  "author": "ASD",
@@ -34,7 +34,7 @@
34
34
  "@react-native-community/netinfo": "11.4.1",
35
35
  "@react-native-voice/voice": "^3.2.4",
36
36
  "franc-min": "^6.2.0",
37
- "mixpanel-react-native": "^3.0.9",
37
+ "mixpanel-react-native": "^3.1.3",
38
38
  "react-native-btr": "^2.2.1",
39
39
  "react-native-webview": "13.12.5",
40
40
  "semver": "^7.6.0"
@@ -111,8 +111,9 @@ class MixPanel {
111
111
  });
112
112
  return;
113
113
  }
114
+
114
115
  try {
115
- // format: YYYYMMDDHHMMSS_[hash_hexadecimal]
116
+ // Validar formato: YYYYMMDDHHMMSS_[hash_hexadecimal]
116
117
  const userIDRegex = /^\d{14}_[a-f0-9]+$/;
117
118
  const isValidFormat = userIDRegex.test(userID);
118
119