@vpalmisano/webrtcperf 4.7.2 → 4.7.4
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/app.min.js +1 -1
- package/build/src/utils.js +1 -1
- package/build/src/utils.js.map +1 -1
- package/build/tsconfig.tsbuildinfo +1 -1
- package/package.json +7 -7
- package/src/utils.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vpalmisano/webrtcperf",
|
|
3
|
-
"version": "4.7.
|
|
3
|
+
"version": "4.7.4",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/vpalmisano/webrtcperf.git"
|
|
@@ -51,12 +51,12 @@
|
|
|
51
51
|
},
|
|
52
52
|
"license": "AGPL-3.0-or-later",
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@google/genai": "^1.
|
|
55
|
-
"@modelcontextprotocol/sdk": "^1.
|
|
54
|
+
"@google/genai": "^1.50.1",
|
|
55
|
+
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
56
56
|
"@puppeteer/browsers": "^2.13.0",
|
|
57
57
|
"@vpalmisano/throttler": "0.0.14",
|
|
58
|
-
"@vpalmisano/webrtcperf-js": "^1.2.
|
|
59
|
-
"axios": "^1.
|
|
58
|
+
"@vpalmisano/webrtcperf-js": "^1.2.10",
|
|
59
|
+
"axios": "^1.15.2",
|
|
60
60
|
"chalk-template": "^1.1.2",
|
|
61
61
|
"change-case": "^4.1.2",
|
|
62
62
|
"compression": "^1.8.1",
|
|
@@ -79,8 +79,8 @@
|
|
|
79
79
|
"pidtree": "^0.6.0",
|
|
80
80
|
"pidusage": "^4.0.1",
|
|
81
81
|
"prom-client": "^15.1.3",
|
|
82
|
-
"puppeteer": "^24.
|
|
83
|
-
"puppeteer-core": "^24.
|
|
82
|
+
"puppeteer": "^24.42.0",
|
|
83
|
+
"puppeteer-core": "^24.42.0",
|
|
84
84
|
"puppeteer-extra": "^3.3.6",
|
|
85
85
|
"puppeteer-extra-plugin-stealth": "^2.11.2",
|
|
86
86
|
"puppeteer-intercept-and-modify-requests": "^1.3.1",
|
package/src/utils.ts
CHANGED
|
@@ -398,7 +398,7 @@ export async function downloadUrl(
|
|
|
398
398
|
} else {
|
|
399
399
|
/* log.debug(`downloadUrl ${response.data.length} bytes, headers=${
|
|
400
400
|
JSON.stringify(response.headers)}`); */
|
|
401
|
-
const contentType = response.headers['content-type']
|
|
401
|
+
const contentType = (response.headers['content-type'] as string) || ''
|
|
402
402
|
let start = 0
|
|
403
403
|
let end = 0
|
|
404
404
|
let total = 0
|