bruce-models 7.1.82 → 7.1.84
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 +21 -2
- package/dist/bruce-models.es5.js.map +1 -1
- package/dist/bruce-models.umd.js +21 -2
- package/dist/bruce-models.umd.js.map +1 -1
- package/dist/lib/bruce-models.js +1 -1
- package/dist/lib/data-lab/data-lab.js +20 -1
- package/dist/lib/data-lab/data-lab.js.map +1 -1
- package/dist/lib/import/import-assembly.js.map +1 -1
- package/dist/lib/tileset/tileset.js.map +1 -1
- package/dist/lib/tracking/tracking.js.map +1 -1
- package/dist/lib/user/session.js.map +1 -1
- package/dist/types/bruce-models.d.ts +1 -1
- package/dist/types/data-lab/data-lab.d.ts +22 -2
- package/dist/types/import/import-assembly.d.ts +2 -0
- package/package.json +1 -1
package/dist/bruce-models.umd.js
CHANGED
|
@@ -10740,6 +10740,24 @@
|
|
|
10740
10740
|
}
|
|
10741
10741
|
|
|
10742
10742
|
(function (DataLab) {
|
|
10743
|
+
/**
|
|
10744
|
+
* What a search returns, as opposed to which Entities it matches.
|
|
10745
|
+
*/
|
|
10746
|
+
let ESelectType;
|
|
10747
|
+
(function (ESelectType) {
|
|
10748
|
+
// Whole Entity records. This is the default.
|
|
10749
|
+
ESelectType["Entity"] = "ENTITY";
|
|
10750
|
+
// Just the Entity IDs.
|
|
10751
|
+
ESelectType["Id"] = "ID";
|
|
10752
|
+
// The distinct Entity Type IDs of the matches, rather than the matches themselves.
|
|
10753
|
+
ESelectType["EntityTypeId"] = "ENTITY_TYPE_ID";
|
|
10754
|
+
// The internal (Bruce) attributes at the root of each record.
|
|
10755
|
+
ESelectType["Internal"] = "Bruce";
|
|
10756
|
+
// A calculation described by Output.
|
|
10757
|
+
ESelectType["Calc"] = "CALC";
|
|
10758
|
+
// A data schema built from the matches.
|
|
10759
|
+
ESelectType["DataSchema"] = "DATA_SCHEMA";
|
|
10760
|
+
})(ESelectType = DataLab.ESelectType || (DataLab.ESelectType = {}));
|
|
10743
10761
|
let EReqKey;
|
|
10744
10762
|
(function (EReqKey) {
|
|
10745
10763
|
EReqKey["Primary"] = "PrimarySelection";
|
|
@@ -10863,7 +10881,8 @@
|
|
|
10863
10881
|
const data = yield req;
|
|
10864
10882
|
res({
|
|
10865
10883
|
entities: data.Items,
|
|
10866
|
-
totalCount: data.MatchesCount
|
|
10884
|
+
totalCount: data.MatchesCount,
|
|
10885
|
+
items: data.Items
|
|
10867
10886
|
});
|
|
10868
10887
|
}
|
|
10869
10888
|
catch (e) {
|
|
@@ -20339,7 +20358,7 @@
|
|
|
20339
20358
|
})(exports.UrlUtils || (exports.UrlUtils = {}));
|
|
20340
20359
|
|
|
20341
20360
|
// This is updated with the package.json version on build.
|
|
20342
|
-
const VERSION = "7.1.
|
|
20361
|
+
const VERSION = "7.1.84";
|
|
20343
20362
|
|
|
20344
20363
|
exports.VERSION = VERSION;
|
|
20345
20364
|
exports.AbstractApi = AbstractApi;
|