@alwaysmeticulous/sdk-bundles-api 2.292.1 → 2.294.0
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.
|
@@ -10,6 +10,17 @@ export interface MeticulousWindowConfig {
|
|
|
10
10
|
METICULOUS_RECORDER_MIDDLEWARE_V1: RecorderMiddleware[];
|
|
11
11
|
METICULOUS_DISABLE_ERROR_REPORTING?: boolean;
|
|
12
12
|
METICULOUS_DISABLE_TRACKER_ID?: boolean;
|
|
13
|
+
/**
|
|
14
|
+
* Maximum size in bytes of a single session payload upload.
|
|
15
|
+
*
|
|
16
|
+
* Without a cap, long or network-heavy sessions can produce payloads large
|
|
17
|
+
* enough to exceed V8's maximum string length (~512 MB), causing a
|
|
18
|
+
* "Cannot create a string longer than 0x1fffffe8 characters" crash in any
|
|
19
|
+
* Node.js process that buffers the upload body (e.g. Playwright's CDP layer).
|
|
20
|
+
*
|
|
21
|
+
* @see {@link LoaderOptions.maxPayloadSize}
|
|
22
|
+
*/
|
|
23
|
+
METICULOUS_MAX_PAYLOAD_SIZE?: number;
|
|
13
24
|
}
|
|
14
25
|
/**
|
|
15
26
|
* Allows sanitizing network responses before they are sent to Meticulous's servers.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alwaysmeticulous/sdk-bundles-api",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.294.0",
|
|
4
4
|
"description": "Meticulous common types",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"dist"
|
|
10
10
|
],
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@alwaysmeticulous/api": "2.
|
|
12
|
+
"@alwaysmeticulous/api": "2.294.0"
|
|
13
13
|
},
|
|
14
14
|
"author": {
|
|
15
15
|
"name": "The Meticulous Team",
|