bruce-models 3.4.8 → 3.5.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.
@@ -849,6 +849,7 @@
849
849
  (function (EAppId) {
850
850
  EAppId["BruceApi"] = "BruceAPI";
851
851
  EAppId["Navigator"] = "Navigator";
852
+ EAppId["Operator"] = "BruceClientAdmin";
852
853
  })(EAppId = Account.EAppId || (Account.EAppId = {}));
853
854
  /**
854
855
  * Possible starter content options.
@@ -3451,7 +3452,9 @@
3451
3452
  coordinates,
3452
3453
  };
3453
3454
  }
3454
- features.push(feature);
3455
+ if (feature.geometry) {
3456
+ features.push(feature);
3457
+ }
3455
3458
  };
3456
3459
  entities.forEach(entity => {
3457
3460
  var _a, _b, _c;
@@ -3464,7 +3467,9 @@
3464
3467
  Point: `${entity.location.longitude},${entity.location.latitude}` + (entity.location.altitude != null ? `,${entity.location.altitude}` : ""),
3465
3468
  };
3466
3469
  }
3467
- processGeometry(geometry, entity);
3470
+ if (geometry) {
3471
+ processGeometry(geometry, entity);
3472
+ }
3468
3473
  });
3469
3474
  return {
3470
3475
  type: "FeatureCollection",
@@ -10566,7 +10571,7 @@
10566
10571
  DataSource.GetList = GetList;
10567
10572
  })(exports.DataSource || (exports.DataSource = {}));
10568
10573
 
10569
- const VERSION = "3.4.8";
10574
+ const VERSION = "3.5.0";
10570
10575
 
10571
10576
  exports.VERSION = VERSION;
10572
10577
  exports.AbstractApi = AbstractApi;