bruce-models 7.1.15 → 7.1.16
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 +12 -3
- package/dist/bruce-models.es5.js.map +1 -1
- package/dist/bruce-models.umd.js +12 -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 +11 -2
- package/dist/lib/data-lab/data-lab.js.map +1 -1
- package/dist/types/bruce-models.d.ts +1 -1
- package/dist/types/data-lab/data-lab.d.ts +2 -0
- package/package.json +1 -1
package/dist/bruce-models.es5.js
CHANGED
|
@@ -15483,14 +15483,23 @@ var DataLab;
|
|
|
15483
15483
|
if (!params) {
|
|
15484
15484
|
params = {};
|
|
15485
15485
|
}
|
|
15486
|
-
let { api, req, expandGroups } = params;
|
|
15486
|
+
let { api, req, expandGroups, isActionableOnly, IsActionableOnly } = params;
|
|
15487
15487
|
if (!api) {
|
|
15488
15488
|
api = ENVIRONMENT.Api().GetBruceApi();
|
|
15489
15489
|
}
|
|
15490
15490
|
let url = "entities/datalab/savedQueries";
|
|
15491
|
+
const urlParams = new URLSearchParams();
|
|
15492
|
+
let hasUrlParams = false;
|
|
15491
15493
|
if (expandGroups) {
|
|
15492
|
-
const urlParams = new URLSearchParams();
|
|
15493
15494
|
urlParams.append("ExpandGroups", "true");
|
|
15495
|
+
hasUrlParams = true;
|
|
15496
|
+
}
|
|
15497
|
+
const actionableOnly = isActionableOnly !== null && isActionableOnly !== void 0 ? isActionableOnly : IsActionableOnly;
|
|
15498
|
+
if (actionableOnly === true) {
|
|
15499
|
+
urlParams.append("IsActionableOnly", "true");
|
|
15500
|
+
hasUrlParams = true;
|
|
15501
|
+
}
|
|
15502
|
+
if (hasUrlParams) {
|
|
15494
15503
|
url += "?" + urlParams.toString();
|
|
15495
15504
|
}
|
|
15496
15505
|
const res = yield api.GET(url, Api.PrepReqParams(req));
|
|
@@ -17429,7 +17438,7 @@ var ChangeSet;
|
|
|
17429
17438
|
})(ChangeSet || (ChangeSet = {}));
|
|
17430
17439
|
|
|
17431
17440
|
// This is updated with the package.json version on build.
|
|
17432
|
-
const VERSION = "7.1.
|
|
17441
|
+
const VERSION = "7.1.16";
|
|
17433
17442
|
|
|
17434
17443
|
export { VERSION, Assembly, AnnDocument, CustomForm, AbstractApi, Api, BruceApi, GlobalApi, GuardianApi, ApiGetters, Calculator, Bounds, BruceEvent, CacheControl, Camera, Cartes, Carto, Color, DelayQueue, Geometry, UTC, BruceVariable, LRUCache, GeoJson, EntityAttachmentType, EntityAttachment, EntityComment, EntityLink, EntityLod, EntityLodCategory, EntityRelationType, EntityRelation, EntitySource, EntityTag, EntityTypeTrigger, EntityType, Entity, EntityCoords, EntityAttribute, EntityHistoricData, EntityTableView, Comment, ClientFile, ProgramKey, ZoomControl, MenuItem, ProjectViewBookmark, ProjectView, ProjectViewLegacyTile, ProjectViewTile, ProjectViewLegacy, ProjectViewLegacyBookmark, ProjectViewBookmarkGroup, PendingAction, MessageBroker, HostingLocation, Style, Tileset, Permission, Session, UserGroup, User, UserMfaMethod, Account, AccountInvite, AccountFeatures, AccountLimits, AccountTemplate, AccountType, EncryptUtils, MathUtils, ObjectUtils, PathUtils, UrlUtils, DataLab, DataLabGroup, ImportAssembly, ImportCad, ImportCsv, ImportJson, ImportGeoJson, ImportKml, ImportedFile, ExportBrz, ExportUsd, Markup, Uploader, Plugin, ENVIRONMENT, DataSource, Scenario, Tracking, NavigatorChatClient, NavigatorMcpWebSocketClient, ChangeSet };
|
|
17435
17444
|
//# sourceMappingURL=bruce-models.es5.js.map
|