bruce-models 5.4.6 → 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) {
@@ -10822,6 +10822,7 @@
10822
10822
  EAppId["BruceApi"] = "BruceAPI";
10823
10823
  EAppId["Navigator"] = "Navigator";
10824
10824
  EAppId["Operator"] = "BruceClientAdmin";
10825
+ EAppId["UI"] = "UI";
10825
10826
  })(EAppId = Account.EAppId || (Account.EAppId = {}));
10826
10827
  /**
10827
10828
  * Possible starter content options.
@@ -11906,9 +11907,6 @@
11906
11907
  function GetList(params) {
11907
11908
  return __awaiter(this, void 0, void 0, function* () {
11908
11909
  let { api, accountId, exclusive, req: reqParams, search } = params;
11909
- if (!accountId) {
11910
- throw ("Client account ID is required.");
11911
- }
11912
11910
  if (!api) {
11913
11911
  api = exports.ENVIRONMENT.Api().GetGuardianApi();
11914
11912
  }
@@ -14702,7 +14700,7 @@
14702
14700
  })(exports.DataSource || (exports.DataSource = {}));
14703
14701
 
14704
14702
  // This is updated with the package.json version on build.
14705
- const VERSION = "5.4.6";
14703
+ const VERSION = "5.4.8";
14706
14704
 
14707
14705
  exports.VERSION = VERSION;
14708
14706
  exports.AbstractApi = AbstractApi;