bruce-models 2.6.9 → 2.7.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.
@@ -97,5 +97,5 @@ __exportStar(require("./internal/uploader"), exports);
97
97
  __exportStar(require("./plugin/plugin"), exports);
98
98
  __exportStar(require("./environment"), exports);
99
99
  __exportStar(require("./data-source/data-source"), exports);
100
- exports.VERSION = "2.6.9";
100
+ exports.VERSION = "2.7.0";
101
101
  //# sourceMappingURL=bruce-models.js.map
@@ -80,4 +80,4 @@ export * from "./internal/uploader";
80
80
  export * from "./plugin/plugin";
81
81
  export * from "./environment";
82
82
  export * from "./data-source/data-source";
83
- export declare const VERSION = "2.6.9";
83
+ export declare const VERSION = "2.7.0";
@@ -70,7 +70,7 @@ export declare namespace MenuItem {
70
70
  ExpandLayers?: boolean;
71
71
  SelectedExpandLayers?: number[];
72
72
  };
73
- CameraZoomSettings: ZoomControl.IItem[];
73
+ CameraZoomSettings?: ZoomControl.IItem[];
74
74
  enableClustering?: boolean;
75
75
  filterLayersByCameraLocation?: boolean;
76
76
  showAllLayersExcludeBelow?: boolean;
@@ -82,10 +82,10 @@ export declare namespace MenuItem {
82
82
  }
83
83
  interface IEntity extends IItem {
84
84
  BruceEntity: {
85
- "EntityType.ID": string;
85
+ "EntityType.ID"?: string;
86
86
  EntityId: string;
87
87
  };
88
- CameraZoomSettings: ZoomControl.IItem[];
88
+ CameraZoomSettings?: ZoomControl.IItem[];
89
89
  showAllLayers?: boolean;
90
90
  showAllLayersExcludeBelow?: boolean;
91
91
  }
@@ -146,16 +146,16 @@ export declare namespace MenuItem {
146
146
  }
147
147
  interface IEntitiesLoaded extends MenuItem.IItem {
148
148
  BruceEntity: {
149
- "EntityType.ID": string;
149
+ "EntityType.ID"?: string;
150
150
  Entities: Entity.IEntity[];
151
151
  };
152
- CameraZoomSettings: ZoomControl.IItem[];
152
+ CameraZoomSettings?: ZoomControl.IItem[];
153
153
  }
154
154
  interface IEntityIds extends MenuItem.IItem {
155
155
  BruceEntity: {
156
156
  EntityIds: string[];
157
157
  };
158
- CameraZoomSettings: ZoomControl.IItem[];
158
+ CameraZoomSettings?: ZoomControl.IItem[];
159
159
  enableClustering?: boolean;
160
160
  }
161
161
  interface IEntityRelations extends MenuItem.IItem {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bruce-models",
3
- "version": "2.6.9",
3
+ "version": "2.7.0",
4
4
  "description": "",
5
5
  "keywords": [],
6
6
  "main": "dist/bruce-models.umd.js",