bruce-models 2.9.1 → 2.9.2

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.
@@ -10064,7 +10064,7 @@
10064
10064
  }
10065
10065
  function Get(params) {
10066
10066
  return __awaiter(this, void 0, void 0, function* () {
10067
- let { api, sessionId, req: reqParams } = params;
10067
+ let { api, sessionId, req: reqParams, accountId } = params;
10068
10068
  if (!api) {
10069
10069
  api = exports.ENVIRONMENT.Api().GetGuardianApi();
10070
10070
  }
@@ -10078,7 +10078,7 @@
10078
10078
  }
10079
10079
  const prom = new Promise((res, rej) => __awaiter(this, void 0, void 0, function* () {
10080
10080
  try {
10081
- const data = yield api.GET(`session/${sessionId}`, reqParams);
10081
+ const data = yield api.GET(`session/${sessionId}${accountId ? `?account=${accountId}` : ""}`, reqParams);
10082
10082
  res({
10083
10083
  session: data
10084
10084
  });
@@ -11761,7 +11761,7 @@
11761
11761
  DataSource.GetList = GetList;
11762
11762
  })(exports.DataSource || (exports.DataSource = {}));
11763
11763
 
11764
- const VERSION$1 = "2.9.1";
11764
+ const VERSION$1 = "2.9.2";
11765
11765
 
11766
11766
  exports.VERSION = VERSION$1;
11767
11767
  exports.AbstractApi = AbstractApi;