@hooklink/cli 0.1.34 → 0.1.35

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.
@@ -165,7 +165,7 @@ class HttpForwarder {
165
165
  }
166
166
  // Compress text responses for efficient WebSocket transport
167
167
  if (!binary && isTextContentType(responseContentType) && bodyStr.length > COMPRESS_MIN_SIZE) {
168
- const compressed = (0, zlib_1.gzipSync)(Buffer.from(bodyStr, 'utf8'), { level: 1 });
168
+ const compressed = (0, zlib_1.gzipSync)(Buffer.from(bodyStr, 'utf8'), { level: 6 });
169
169
  sanitizedHeaders['content-encoding'] = 'gzip';
170
170
  delete sanitizedHeaders['content-length'];
171
171
  return {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hooklink/cli",
3
- "version": "0.1.34",
3
+ "version": "0.1.35",
4
4
  "description": "HookLink CLI - Forward webhooks to your local development machine",
5
5
  "main": "dist/index.js",
6
6
  "bin": {