@jaypie/express 1.2.11-dev.5 → 1.2.11-dev.6

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/esm/index.js CHANGED
@@ -854,6 +854,8 @@ class LambdaResponseStreaming extends Writable {
854
854
  for (const [key, value] of this._headers) {
855
855
  headers[key] = Array.isArray(value) ? value.join(", ") : String(value);
856
856
  }
857
+ // Add version header for deployment verification
858
+ headers["x-jaypie-streaming"] = "1.2.11-dev.6";
857
859
  // Lambda streaming requires body content for metadata to be transmitted.
858
860
  // Convert 204 No Content to 200 OK with empty JSON body as workaround.
859
861
  // See: https://github.com/finlaysonstudio/jaypie/issues/178