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.
- package/dist/bruce-models.es5.js +8 -3
- package/dist/bruce-models.es5.js.map +1 -1
- package/dist/bruce-models.umd.js +8 -3
- package/dist/bruce-models.umd.js.map +1 -1
- package/dist/lib/account/account.js +1 -0
- package/dist/lib/account/account.js.map +1 -1
- package/dist/lib/bruce-models.js +1 -1
- package/dist/lib/entity/entity.js +6 -2
- package/dist/lib/entity/entity.js.map +1 -1
- package/dist/types/account/account-settings.d.ts +8 -1
- package/dist/types/account/account.d.ts +2 -1
- package/dist/types/bruce-models.d.ts +1 -1
- package/package.json +1 -1
package/dist/bruce-models.umd.js
CHANGED
|
@@ -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
|
-
|
|
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
|
-
|
|
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.
|
|
10574
|
+
const VERSION = "3.5.0";
|
|
10570
10575
|
|
|
10571
10576
|
exports.VERSION = VERSION;
|
|
10572
10577
|
exports.AbstractApi = AbstractApi;
|