apps-sdk 1.1.84 → 1.1.86
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.
|
|
3
|
+
"version": "1.1.86",
|
|
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.
|
|
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"
|
|
@@ -29,7 +29,8 @@ class PayWall extends React.Component {
|
|
|
29
29
|
componentDidMount() {
|
|
30
30
|
const { type, keyword } = this.props;
|
|
31
31
|
this.initPayWall();
|
|
32
|
-
this.getPayWallDataWithRetry(type, keyword);
|
|
32
|
+
// this.getPayWallDataWithRetry(type, keyword);
|
|
33
|
+
this.getPayWallData(type, keyword);
|
|
33
34
|
}
|
|
34
35
|
|
|
35
36
|
initPayWall = async () => {
|
|
@@ -111,8 +111,9 @@ class MixPanel {
|
|
|
111
111
|
});
|
|
112
112
|
return;
|
|
113
113
|
}
|
|
114
|
+
|
|
114
115
|
try {
|
|
115
|
-
//
|
|
116
|
+
// Validar formato: YYYYMMDDHHMMSS_[hash_hexadecimal]
|
|
116
117
|
const userIDRegex = /^\d{14}_[a-f0-9]+$/;
|
|
117
118
|
const isValidFormat = userIDRegex.test(userID);
|
|
118
119
|
|