bruce-models 4.3.5 → 4.3.7
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 +3 -3
- package/dist/bruce-models.es5.js.map +1 -1
- package/dist/bruce-models.umd.js +3 -3
- 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 +2 -2
- package/dist/lib/data-lab/data-lab.js.map +1 -1
- package/dist/lib/entity/entity-coords.js.map +1 -1
- package/dist/lib/entity/entity.js.map +1 -1
- package/dist/types/bruce-models.d.ts +1 -1
- package/dist/types/data-lab/data-lab.d.ts +1 -0
- package/dist/types/entity/entity-coords.d.ts +9 -0
- package/dist/types/entity/entity.d.ts +2 -1
- package/package.json +1 -1
package/dist/bruce-models.umd.js
CHANGED
|
@@ -12128,7 +12128,7 @@
|
|
|
12128
12128
|
*/
|
|
12129
12129
|
function Run(params) {
|
|
12130
12130
|
return __awaiter(this, void 0, void 0, function* () {
|
|
12131
|
-
let { api, query, key, skip, load, req: reqParams } = params;
|
|
12131
|
+
let { api, query, key, skip, load, req: reqParams, migrated } = params;
|
|
12132
12132
|
if (!api) {
|
|
12133
12133
|
api = exports.ENVIRONMENT.Api().GetBruceApi();
|
|
12134
12134
|
}
|
|
@@ -12141,7 +12141,7 @@
|
|
|
12141
12141
|
if (!load) {
|
|
12142
12142
|
load = 50;
|
|
12143
12143
|
}
|
|
12144
|
-
const req = api.POST(`entities/datalab/getMatchingEntities/${key}?skip=${skip}&load=${load}`, query, exports.Api.PrepReqParams(reqParams));
|
|
12144
|
+
const req = api.POST(`entities/datalab/getMatchingEntities/${key}?skip=${skip}&load=${load}?hasMigrated=${Boolean(migrated)}`, query, exports.Api.PrepReqParams(reqParams));
|
|
12145
12145
|
const prom = new Promise((res, rej) => __awaiter(this, void 0, void 0, function* () {
|
|
12146
12146
|
try {
|
|
12147
12147
|
const data = yield req;
|
|
@@ -13079,7 +13079,7 @@
|
|
|
13079
13079
|
})(exports.DataSource || (exports.DataSource = {}));
|
|
13080
13080
|
|
|
13081
13081
|
// This is updated with the package.json version on build.
|
|
13082
|
-
const VERSION = "4.3.
|
|
13082
|
+
const VERSION = "4.3.7";
|
|
13083
13083
|
|
|
13084
13084
|
exports.VERSION = VERSION;
|
|
13085
13085
|
exports.AbstractApi = AbstractApi;
|