bruce-models 4.0.2 → 4.0.3

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.
@@ -7691,12 +7691,16 @@
7691
7691
  try {
7692
7692
  const data = yield api.GET("tileset/getList", reqParams);
7693
7693
  // Convert legacy records.
7694
+ // Commented out because it spams :)
7695
+ // Should use the legacy getList perhaps and substitute needed records.
7696
+ /*
7694
7697
  for (let i = 0; i < data.length; i++) {
7695
7698
  const record = data[i];
7696
7699
  if (record.type == EType.LegacyEntitiesSet || record.type == EType.LegacyStatic || record.type == EType.LegacyExternal) {
7697
- data[i] = convertLegacyRec(yield api.GET(`ui.tileset/${record.id}`, reqParams), data[i]);
7700
+ data[i] = convertLegacyRec(await api.GET(`ui.tileset/${record.id}`, reqParams), data[i]);
7698
7701
  }
7699
7702
  }
7703
+ */
7700
7704
  res({
7701
7705
  tilesets: data
7702
7706
  });
@@ -11384,7 +11388,7 @@
11384
11388
  })(exports.DataSource || (exports.DataSource = {}));
11385
11389
 
11386
11390
  // This is updated with the package.json version on build.
11387
- const VERSION = "4.0.2";
11391
+ const VERSION = "4.0.3";
11388
11392
 
11389
11393
  exports.VERSION = VERSION;
11390
11394
  exports.AbstractApi = AbstractApi;