bruce-models 7.1.56 → 7.1.57
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 -2
- package/dist/bruce-models.es5.js.map +1 -1
- package/dist/bruce-models.umd.js +8 -2
- package/dist/bruce-models.umd.js.map +1 -1
- package/dist/lib/account/account-audit.js +7 -1
- package/dist/lib/account/account-audit.js.map +1 -1
- package/dist/lib/bruce-models.js +1 -1
- package/dist/types/account/account-audit.d.ts +1 -1
- package/dist/types/bruce-models.d.ts +1 -1
- package/package.json +1 -1
package/dist/bruce-models.es5.js
CHANGED
|
@@ -2809,8 +2809,14 @@ var AccountAudit;
|
|
|
2809
2809
|
if (detailLevel) {
|
|
2810
2810
|
urlParams.append("DetailLevel", detailLevel);
|
|
2811
2811
|
}
|
|
2812
|
+
if (concept instanceof Array) {
|
|
2813
|
+
urlParams.append("Concept", concept.join(","));
|
|
2814
|
+
}
|
|
2815
|
+
else if (concept) {
|
|
2816
|
+
urlParams.append("Concept", concept);
|
|
2817
|
+
}
|
|
2812
2818
|
const query = urlParams.toString();
|
|
2813
|
-
const route = `v3/accountAudits/
|
|
2819
|
+
const route = `v3/accountAudits/concepts`;
|
|
2814
2820
|
return api.GET(query ? `${route}?${query}` : route, Api.PrepReqParams(reqParams));
|
|
2815
2821
|
});
|
|
2816
2822
|
}
|
|
@@ -19259,7 +19265,7 @@ var UrlUtils;
|
|
|
19259
19265
|
})(UrlUtils || (UrlUtils = {}));
|
|
19260
19266
|
|
|
19261
19267
|
// This is updated with the package.json version on build.
|
|
19262
|
-
const VERSION = "7.1.
|
|
19268
|
+
const VERSION = "7.1.57";
|
|
19263
19269
|
|
|
19264
19270
|
export { VERSION, Account, AccountAudit, AccountConcept, AccountFeatures, AccountInvite, AccountLimits, AccountTemplate, AccountType, AnnDocument, AbstractApi, Api, ApiGetters, BruceApi, GlobalApi, GuardianApi, Assembly, Calculator, ChangeSet, ClientFile, Bounds, BruceEvent, BruceVariable, CacheControl, Camera, Cartes, Carto, Color, DelayQueue, GeoJson, Geometry, LRUCache, UTC, CustomForm, DashboardView, DataFeed, DataLab, DataLabGroup, DataSource, DataTransform, Comment, Entity, EntityAttachment, EntityAttachmentType, EntityAttribute, EntityComment, EntityCoords, EntityHistoricData, EntityLink, EntityLod, EntityLodCategory, EntityRelation, EntityRelationType, EntitySource, EntityTableView, EntityTag, EntityType, EntityTypeTrigger, ENVIRONMENT, ExportBrz, ExportUsd, ImportAssembly, ImportCad, ImportCsv, ImportGeoJson, ImportJson, ImportKml, ImportLcc, ImportedFile, Uploader, Markup, NAVIGATOR_CHAT_EVENT_ENTITY_HIGHLIGHT_APPLIED, NAVIGATOR_CHAT_EVENT_SCENE_CONTEXT_PREFETCHED, NavigatorChatClient, NavigatorMcpWebSocketClient, Plugin, ProgramKey, MenuItem, ProjectView, ProjectViewBookmark, ProjectViewBookmarkGroup, ProjectViewLegacy, ProjectViewLegacyBookmark, ProjectViewLegacyTile, ProjectViewTile, ZoomControl, Scenario, HostingLocation, MessageBroker, PendingAction, RecordChangeFeed, Style, Tileset, Tracking, Permission, Session, User, UserGroup, UserMfaMethod, EncryptUtils, MathUtils, ObjectUtils, PathUtils, UrlUtils };
|
|
19265
19271
|
//# sourceMappingURL=bruce-models.es5.js.map
|