@cedarai/session-replay-sdk 0.6.0 → 0.6.1

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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -150,7 +150,7 @@ var Transport = class {
150
150
  const json = JSON.stringify(payload);
151
151
  gzipCompress(json).then((compressed) => {
152
152
  if (this.queue.length > 0) {
153
- this.pendingBeaconBlob = new Blob([compressed], { type: "application/octet-stream" });
153
+ this.pendingBeaconBlob = new Blob([compressed], { type: "text/plain" });
154
154
  this.pendingBeaconUrl = `${this.config.serverUrl}/api/ingest?encoding=gzip`;
155
155
  }
156
156
  }).catch(() => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cedarai/session-replay-sdk",
3
- "version": "0.6.0",
3
+ "version": "0.6.1",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",