bruce-models 1.1.9 → 1.2.0
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 +15 -11
- package/dist/bruce-models.es5.js.map +1 -1
- package/dist/bruce-models.umd.js +13 -10
- package/dist/bruce-models.umd.js.map +1 -1
- package/dist/lib/bruce-models.js +1 -0
- package/dist/lib/bruce-models.js.map +1 -1
- package/dist/lib/entity/entity-attribute.js +17 -0
- package/dist/lib/entity/entity-attribute.js.map +1 -0
- package/dist/lib/entity/entity-type.js +0 -10
- package/dist/lib/entity/entity-type.js.map +1 -1
- package/dist/types/bruce-models.d.ts +1 -0
- package/dist/types/entity/entity-attribute.d.ts +39 -0
- package/dist/types/entity/entity-type.d.ts +10 -26
- package/package.json +1 -1
package/dist/bruce-models.es5.js
CHANGED
|
@@ -3292,16 +3292,6 @@ var EntityType;
|
|
|
3292
3292
|
return Api.ECacheKey.EntityType;
|
|
3293
3293
|
}
|
|
3294
3294
|
EntityType.GetListCacheKey = GetListCacheKey;
|
|
3295
|
-
let EAttributeType;
|
|
3296
|
-
(function (EAttributeType) {
|
|
3297
|
-
EAttributeType["String"] = "String";
|
|
3298
|
-
EAttributeType["Double"] = "Double";
|
|
3299
|
-
EAttributeType["Integer"] = "Integer";
|
|
3300
|
-
EAttributeType["Datetime"] = "Datetime";
|
|
3301
|
-
EAttributeType["Structure"] = "Structure";
|
|
3302
|
-
EAttributeType["Boolean"] = "Boolean";
|
|
3303
|
-
EAttributeType["Geometry"] = "Geometry";
|
|
3304
|
-
})(EAttributeType = EntityType.EAttributeType || (EntityType.EAttributeType = {}));
|
|
3305
3295
|
function Get(api, typeId, reqParams) {
|
|
3306
3296
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3307
3297
|
if (!typeId) {
|
|
@@ -4065,6 +4055,20 @@ var EntityTypeVisualSettings;
|
|
|
4065
4055
|
})(EAction = EntityTypeVisualSettings.EAction || (EntityTypeVisualSettings.EAction = {}));
|
|
4066
4056
|
})(EntityTypeVisualSettings || (EntityTypeVisualSettings = {}));
|
|
4067
4057
|
|
|
4058
|
+
var EntityAttribute;
|
|
4059
|
+
(function (EntityAttribute) {
|
|
4060
|
+
let EType;
|
|
4061
|
+
(function (EType) {
|
|
4062
|
+
EType["String"] = "String";
|
|
4063
|
+
EType["Double"] = "Double";
|
|
4064
|
+
EType["Integer"] = "Integer";
|
|
4065
|
+
EType["Datetime"] = "Datetime";
|
|
4066
|
+
EType["Structure"] = "Structure";
|
|
4067
|
+
EType["Geometry"] = "Geometry";
|
|
4068
|
+
EType["Dictionary"] = "Dictionary";
|
|
4069
|
+
})(EType = EntityAttribute.EType || (EntityAttribute.EType = {}));
|
|
4070
|
+
})(EntityAttribute || (EntityAttribute = {}));
|
|
4071
|
+
|
|
4068
4072
|
/**
|
|
4069
4073
|
* Describes the "Client File" concept within Bruce.
|
|
4070
4074
|
* A client file is a record of a file uploaded to Bruce.
|
|
@@ -6169,5 +6173,5 @@ var Markup;
|
|
|
6169
6173
|
})(Entity3d = Markup.Entity3d || (Markup.Entity3d = {}));
|
|
6170
6174
|
})(Markup || (Markup = {}));
|
|
6171
6175
|
|
|
6172
|
-
export { AnnDocument, CustomForm, CustomFormContent, AbstractApi, Api, BruceApi, CamApi, IdmApi, GlobalApi, Calculator, Bounds, BruceEvent, CacheControl, Camera, Cartes, Carto, Color, DelayQueue, Geometry, UTC, BruceVariable, EntityAttachmentType, EntityAttachment, EntityComment, EntityLink, EntityLod, EntityRelationType, EntityRelation, EntitySource, EntityTag, EntityType, Entity, EntityGlobe, EntityFilterGetter, BatchedDataGetter, EntityCoords, EntityTypeVisualSettings, ClientFile, ProgramKey, ZoomControl, MenuItem, ProjectViewBookmark, ProjectView, ProjectViewLegacyTile, ProjectViewTile, PendingAction, MessageBroker, Style, TilesetEntitiesMapTiles, TilesetExtMapTiles, Tileset, Permission, Session, UserGroup, User, Account, EncryptUtils, MathUtils, ObjectUtils, PathUtils, UrlUtils, DataLab, ImportCad, ImportCsv, ImportJson, ImportKml, ImportedFile, Markup };
|
|
6176
|
+
export { AnnDocument, CustomForm, CustomFormContent, AbstractApi, Api, BruceApi, CamApi, IdmApi, GlobalApi, Calculator, Bounds, BruceEvent, CacheControl, Camera, Cartes, Carto, Color, DelayQueue, Geometry, UTC, BruceVariable, EntityAttachmentType, EntityAttachment, EntityComment, EntityLink, EntityLod, EntityRelationType, EntityRelation, EntitySource, EntityTag, EntityType, Entity, EntityGlobe, EntityFilterGetter, BatchedDataGetter, EntityCoords, EntityTypeVisualSettings, EntityAttribute, ClientFile, ProgramKey, ZoomControl, MenuItem, ProjectViewBookmark, ProjectView, ProjectViewLegacyTile, ProjectViewTile, PendingAction, MessageBroker, Style, TilesetEntitiesMapTiles, TilesetExtMapTiles, Tileset, Permission, Session, UserGroup, User, Account, EncryptUtils, MathUtils, ObjectUtils, PathUtils, UrlUtils, DataLab, ImportCad, ImportCsv, ImportJson, ImportKml, ImportedFile, Markup };
|
|
6173
6177
|
//# sourceMappingURL=bruce-models.es5.js.map
|