bruce-models 5.4.7 → 5.4.8

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.
@@ -629,7 +629,7 @@
629
629
  // Protocol matching the Bruce API one.
630
630
  // In almost all cases it will be wss, in a localhost BruceAPI then it might be ws.
631
631
  const protocol = currentUrl.protocol === "http:" ? "ws:" : "wss:";
632
- let full = protocol + "://" + currentUrl.host + currentUrl.pathname + "websocket";
632
+ let full = protocol + "//" + currentUrl.host + currentUrl.pathname + "websocket";
633
633
  // Check if we have a queryParam for accountId.
634
634
  const accountId = currentUrl.searchParams.get("accountId");
635
635
  if (accountId) {
@@ -14700,7 +14700,7 @@
14700
14700
  })(exports.DataSource || (exports.DataSource = {}));
14701
14701
 
14702
14702
  // This is updated with the package.json version on build.
14703
- const VERSION = "5.4.7";
14703
+ const VERSION = "5.4.8";
14704
14704
 
14705
14705
  exports.VERSION = VERSION;
14706
14706
  exports.AbstractApi = AbstractApi;