bruce-models 7.1.84 → 7.1.85
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 +20 -1
- package/dist/bruce-models.es5.js.map +1 -1
- package/dist/bruce-models.umd.js +20 -1
- package/dist/bruce-models.umd.js.map +1 -1
- package/dist/lib/bruce-models.js +1 -1
- package/dist/lib/import/import-assembly.js +19 -0
- package/dist/lib/import/import-assembly.js.map +1 -1
- package/dist/types/bruce-models.d.ts +1 -1
- package/dist/types/import/import-assembly.d.ts +22 -5
- package/package.json +1 -1
package/dist/bruce-models.es5.js
CHANGED
|
@@ -15186,6 +15186,25 @@ var ImportAssembly;
|
|
|
15186
15186
|
return null;
|
|
15187
15187
|
}
|
|
15188
15188
|
ImportAssembly.ParseAnalysisResult = ParseAnalysisResult;
|
|
15189
|
+
/**
|
|
15190
|
+
* Returns the analysis itself, wherever the API decided to put it.
|
|
15191
|
+
*/
|
|
15192
|
+
function ResolveAnalysisResult(params) {
|
|
15193
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
15194
|
+
let { api, paResult, req: reqParams } = params;
|
|
15195
|
+
const parsed = ParseAnalysisResult(paResult);
|
|
15196
|
+
const tempFileId = parsed === null || parsed === void 0 ? void 0 : parsed["Analysis.TempFile.ID"];
|
|
15197
|
+
if (!parsed || !tempFileId) {
|
|
15198
|
+
return parsed;
|
|
15199
|
+
}
|
|
15200
|
+
if (!api) {
|
|
15201
|
+
api = ENVIRONMENT.Api().GetBruceApi();
|
|
15202
|
+
}
|
|
15203
|
+
const analysis = yield api.GET("tempfile/" + tempFileId, Api.PrepReqParams(reqParams));
|
|
15204
|
+
return typeof analysis === "string" ? ParseAnalysisResult(analysis) : analysis;
|
|
15205
|
+
});
|
|
15206
|
+
}
|
|
15207
|
+
ImportAssembly.ResolveAnalysisResult = ResolveAnalysisResult;
|
|
15189
15208
|
})(ImportAssembly || (ImportAssembly = {}));
|
|
15190
15209
|
|
|
15191
15210
|
/**
|
|
@@ -20721,7 +20740,7 @@ var UrlUtils;
|
|
|
20721
20740
|
})(UrlUtils || (UrlUtils = {}));
|
|
20722
20741
|
|
|
20723
20742
|
// This is updated with the package.json version on build.
|
|
20724
|
-
const VERSION = "7.1.
|
|
20743
|
+
const VERSION = "7.1.85";
|
|
20725
20744
|
|
|
20726
20745
|
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, EntityTypeRelation, EntityTypeTrigger, Ontology, OntologyDocument, ENVIRONMENT, ExportBrz, ExportCsv, ExportUsd, Hexbin, ImportAssembly, ImportCad, ImportCsv, ImportGeoJson, ImportJson, ImportKml, ImportLcc, ImportedFile, Uploader, Markup, UIMarkup, 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 };
|
|
20727
20746
|
//# sourceMappingURL=bruce-models.es5.js.map
|