bruce-models 3.2.9 → 3.3.0

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.
@@ -2981,9 +2981,10 @@
2981
2981
  function CalculateNameAsync(params) {
2982
2982
  var _a;
2983
2983
  return __awaiter(this, void 0, void 0, function* () {
2984
- let { entityId, entity, typeId, type, defaultToId } = params;
2984
+ let { api, entityId, entity, typeId, type, defaultToId } = params;
2985
2985
  if (entityId && !entity) {
2986
2986
  const { entity: data } = yield Get({
2987
+ api,
2987
2988
  entityId,
2988
2989
  entityTypeId: typeId
2989
2990
  });
@@ -2997,6 +2998,7 @@
2997
2998
  }
2998
2999
  if (typeId && !type) {
2999
3000
  const { entityType: data } = yield exports.EntityType.Get({
3001
+ api,
3000
3002
  entityTypeId: typeId
3001
3003
  });
3002
3004
  type = data;
@@ -10367,7 +10369,7 @@
10367
10369
  DataSource.GetList = GetList;
10368
10370
  })(exports.DataSource || (exports.DataSource = {}));
10369
10371
 
10370
- const VERSION = "3.2.9";
10372
+ const VERSION = "3.3.0";
10371
10373
 
10372
10374
  exports.VERSION = VERSION;
10373
10375
  exports.AbstractApi = AbstractApi;