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.
- package/dist/bruce-models.es5.js +2 -2
- package/dist/bruce-models.es5.js.map +1 -1
- package/dist/bruce-models.umd.js +2 -2
- package/dist/bruce-models.umd.js.map +1 -1
- package/dist/lib/bruce-models.js +1 -1
- package/dist/lib/server/message-broker.js +1 -1
- package/dist/lib/server/message-broker.js.map +1 -1
- package/dist/types/bruce-models.d.ts +1 -1
- package/package.json +1 -1
package/dist/bruce-models.umd.js
CHANGED
|
@@ -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 + "
|
|
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.
|
|
14703
|
+
const VERSION = "5.4.8";
|
|
14704
14704
|
|
|
14705
14705
|
exports.VERSION = VERSION;
|
|
14706
14706
|
exports.AbstractApi = AbstractApi;
|