noibu-react-native 0.2.13 → 0.2.14
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/dist/constants.js
CHANGED
|
@@ -24,7 +24,7 @@ const CONTENT_TYPE = 'content-type';
|
|
|
24
24
|
* Gets the script id from the cookie object, returns default if cannot be found
|
|
25
25
|
*/
|
|
26
26
|
function GET_SCRIPT_ID() {
|
|
27
|
-
return "1.0.104-rn-sdk-0.2.
|
|
27
|
+
return "1.0.104-rn-sdk-0.2.14" ;
|
|
28
28
|
}
|
|
29
29
|
/**
|
|
30
30
|
* Gets the max metro recon number
|
|
@@ -8,9 +8,9 @@ import { MetroplexMessageType, EventType } from 'noibu-metroplex-ts-bindings';
|
|
|
8
8
|
/** @module PageVisitEventHTTP */
|
|
9
9
|
/** http event manager */
|
|
10
10
|
// maximum number of HTTP data events including errors to collect per page visit
|
|
11
|
-
const MAX_HTTP_DATA_IF_ERROR_EVENT_COUNT =
|
|
11
|
+
const MAX_HTTP_DATA_IF_ERROR_EVENT_COUNT = 2800;
|
|
12
12
|
// maximum number of HTTP data events to collect per page visit
|
|
13
|
-
const MAX_HTTP_DATA_EVENT_COUNT =
|
|
13
|
+
const MAX_HTTP_DATA_EVENT_COUNT = 2500;
|
|
14
14
|
/** if no value or it's less than 0, fallback to 0 */
|
|
15
15
|
const validate = (value) => (!value || value < 0 ? 0 : value);
|
|
16
16
|
/** Saves the HTTP event to the pageVisit Queue */
|
package/package.json
CHANGED