bruce-models 3.2.3 → 3.2.4

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.
@@ -7718,7 +7718,9 @@
7718
7718
  }
7719
7719
  const isNew = !data.ID;
7720
7720
  if (!data.ID) {
7721
- data.ID = exports.ObjectUtils.UId();
7721
+ // Short ID to keep the URL short.
7722
+ // 8 length = 4,294,967,296 combinations.
7723
+ data.ID = exports.ObjectUtils.UId(8);
7722
7724
  }
7723
7725
  if (!data.Name) {
7724
7726
  data.Name = data.ID;
@@ -10227,7 +10229,7 @@
10227
10229
  DataSource.GetList = GetList;
10228
10230
  })(exports.DataSource || (exports.DataSource = {}));
10229
10231
 
10230
- const VERSION = "3.2.3";
10232
+ const VERSION = "3.2.4";
10231
10233
 
10232
10234
  exports.VERSION = VERSION;
10233
10235
  exports.AbstractApi = AbstractApi;