bruce-models 5.2.2 → 5.2.3
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 +32 -2
- package/dist/bruce-models.es5.js.map +1 -1
- package/dist/bruce-models.umd.js +29 -1
- package/dist/bruce-models.umd.js.map +1 -1
- package/dist/lib/bruce-models.js +3 -1
- package/dist/lib/bruce-models.js.map +1 -1
- package/dist/lib/export/export-brz.js +29 -0
- package/dist/lib/export/export-brz.js.map +1 -0
- package/dist/lib/export/export-usd.js +29 -0
- package/dist/lib/export/export-usd.js.map +1 -0
- package/dist/types/bruce-models.d.ts +3 -1
- package/dist/types/export/export-brz.d.ts +22 -0
- package/dist/types/export/export-usd.d.ts +22 -0
- package/package.json +1 -1
package/dist/bruce-models.es5.js
CHANGED
|
@@ -13804,6 +13804,36 @@ var ImportedFile;
|
|
|
13804
13804
|
ImportedFile.Get = Get;
|
|
13805
13805
|
})(ImportedFile || (ImportedFile = {}));
|
|
13806
13806
|
|
|
13807
|
+
var ExportBrz;
|
|
13808
|
+
(function (ExportBrz) {
|
|
13809
|
+
function Export(params) {
|
|
13810
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
13811
|
+
let { api, fileExport, req: reqParams } = params;
|
|
13812
|
+
if (!api) {
|
|
13813
|
+
api = ENVIRONMENT.Api().GetBruceApi();
|
|
13814
|
+
}
|
|
13815
|
+
fileExport["Type"] = "BRZ";
|
|
13816
|
+
return api.POST("export", fileExport, Api.PrepReqParams(reqParams));
|
|
13817
|
+
});
|
|
13818
|
+
}
|
|
13819
|
+
ExportBrz.Export = Export;
|
|
13820
|
+
})(ExportBrz || (ExportBrz = {}));
|
|
13821
|
+
|
|
13822
|
+
var ExportUsd;
|
|
13823
|
+
(function (ExportUsd) {
|
|
13824
|
+
function Export(params) {
|
|
13825
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
13826
|
+
let { api, fileExport, req: reqParams } = params;
|
|
13827
|
+
if (!api) {
|
|
13828
|
+
api = ENVIRONMENT.Api().GetBruceApi();
|
|
13829
|
+
}
|
|
13830
|
+
fileExport["Type"] = "USD";
|
|
13831
|
+
return api.POST("export", fileExport, Api.PrepReqParams(reqParams));
|
|
13832
|
+
});
|
|
13833
|
+
}
|
|
13834
|
+
ExportUsd.Export = Export;
|
|
13835
|
+
})(ExportUsd || (ExportUsd = {}));
|
|
13836
|
+
|
|
13807
13837
|
/**
|
|
13808
13838
|
* Description of a "Markup" which is stored in bookmark records.
|
|
13809
13839
|
*/
|
|
@@ -14504,7 +14534,7 @@ var DataSource;
|
|
|
14504
14534
|
})(DataSource || (DataSource = {}));
|
|
14505
14535
|
|
|
14506
14536
|
// This is updated with the package.json version on build.
|
|
14507
|
-
const VERSION = "5.2.
|
|
14537
|
+
const VERSION = "5.2.3";
|
|
14508
14538
|
|
|
14509
|
-
export { VERSION, 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, EntityType, Entity, EntityCoords, EntityTypeVisualSettings, EntityAttribute, EntityHistoricData, EntityTableView, Comment, ClientFile, ProgramKey, ZoomControl, MenuItem, ProjectViewBookmark, ProjectView, ProjectViewLegacyTile, ProjectViewTile, ProjectViewLegacy, ProjectViewLegacyBookmark, PendingAction, MessageBroker, HostingLocation, Style, Tileset, Permission, Session, UserGroup, User, Account, AccountInvite, AccountFeatures, AccountLimits, EncryptUtils, MathUtils, ObjectUtils, PathUtils, UrlUtils, DataLab, ImportAssembly, ImportCad, ImportCsv, ImportJson, ImportGeoJson, ImportKml, ImportedFile, Markup, Uploader, Plugin, ENVIRONMENT, DataSource };
|
|
14539
|
+
export { VERSION, 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, EntityType, Entity, EntityCoords, EntityTypeVisualSettings, EntityAttribute, EntityHistoricData, EntityTableView, Comment, ClientFile, ProgramKey, ZoomControl, MenuItem, ProjectViewBookmark, ProjectView, ProjectViewLegacyTile, ProjectViewTile, ProjectViewLegacy, ProjectViewLegacyBookmark, PendingAction, MessageBroker, HostingLocation, Style, Tileset, Permission, Session, UserGroup, User, Account, AccountInvite, AccountFeatures, AccountLimits, EncryptUtils, MathUtils, ObjectUtils, PathUtils, UrlUtils, DataLab, ImportAssembly, ImportCad, ImportCsv, ImportJson, ImportGeoJson, ImportKml, ImportedFile, ExportBrz, ExportUsd, Markup, Uploader, Plugin, ENVIRONMENT, DataSource };
|
|
14510
14540
|
//# sourceMappingURL=bruce-models.es5.js.map
|