@mercuryworkshop/epoxy-transport 2.0.3 → 2.0.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/dist/index.js CHANGED
@@ -1578,7 +1578,7 @@ var EpoxyClient = class {
1578
1578
  handlers,
1579
1579
  url.href,
1580
1580
  protocols,
1581
- Object.assign({ "Origin": origin }, requestHeaders)
1581
+ { "Origin": origin }
1582
1582
  );
1583
1583
  return [
1584
1584
  async (data) => {
package/dist/module.js CHANGED
@@ -1539,7 +1539,7 @@ var EpoxyClient = class {
1539
1539
  handlers,
1540
1540
  url.href,
1541
1541
  protocols,
1542
- Object.assign({ "Origin": origin }, requestHeaders)
1542
+ { "Origin": origin }
1543
1543
  );
1544
1544
  return [
1545
1545
  async (data) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mercuryworkshop/epoxy-transport",
3
- "version": "2.0.3",
3
+ "version": "2.0.4",
4
4
  "description": "a bare transport that implements end-to-end encryption with epoxy-tls and wisp",
5
5
  "main": "./dist/index.mjs",
6
6
  "keywords": [],
@@ -12,10 +12,10 @@
12
12
  "rollup": "^4.12.0",
13
13
  "rollup-plugin-node-resolve": "^5.2.0",
14
14
  "rollup-plugin-typescript2": "^0.36.0",
15
- "ws": "8.16.0"
15
+ "ws": "8.17.1"
16
16
  },
17
17
  "devDependencies": {
18
- "@mercuryworkshop/bare-mux": "^1.1.3",
18
+ "@mercuryworkshop/bare-mux": "^1.1.4",
19
19
  "esbuild": "^0.19.11",
20
20
  "esbuild-plugin-d.ts": "^1.2.2"
21
21
  },
package/src/main.ts CHANGED
@@ -69,7 +69,7 @@ export class EpoxyClient implements BareTransport {
69
69
  handlers,
70
70
  url.href,
71
71
  protocols,
72
- Object.assign({ "Origin": origin }, requestHeaders)
72
+ { "Origin": origin }
73
73
  );
74
74
 
75
75
  return [