@bimdata/viewer 2.0.0-beta.97 → 2.0.0-beta.99

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/index.d.ts CHANGED
@@ -145,17 +145,18 @@ declare namespace BDV {
145
145
  "structure-properties"?:
146
146
  | boolean
147
147
  | {
148
- merge?: boolean;
149
- export?: boolean;
150
- editProperties?: boolean;
151
- translateIfcEntities?: boolean;
152
- customTranslations?: Object;
153
- };
148
+ merge?: boolean;
149
+ export?: boolean;
150
+ editProperties?: boolean;
151
+ translateIfcEntities?: boolean;
152
+ customTranslations?: Object;
153
+ };
154
154
  switch?: boolean;
155
155
  synchronization?: boolean;
156
156
  viewer2d?:
157
157
  | boolean
158
158
  | {
159
+ compass?: boolean;
159
160
  help?: boolean;
160
161
  modelLoader?: "hidden" | "disabled";
161
162
  };
@@ -168,7 +169,7 @@ declare namespace BDV {
168
169
  | {
169
170
  edges?: boolean;
170
171
  enableDynamicLOD?: boolean;
171
- enableOffsets: boolean;
172
+ enableOffsets?: boolean;
172
173
  home?: boolean;
173
174
  help?: boolean;
174
175
  modelLoader?: "hidden" | "disabled";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bimdata/viewer",
3
3
  "type": "module",
4
- "version": "2.0.0-beta.97",
4
+ "version": "2.0.0-beta.99",
5
5
  "description": "A customizable BIM viewer.",
6
6
  "keywords": [
7
7
  "bim",
package/types/api.d.ts CHANGED
@@ -46,9 +46,9 @@ declare namespace BDV {
46
46
  project_id: number;
47
47
  document_id: number;
48
48
  document?: ApiDocument;
49
- preview_file?: string;
50
49
 
51
50
  // Model files
51
+ preview_file?: string;
52
52
  structure_file?: string;
53
53
  xkt_file?: string; // Deprecated: use `xkt_files` instead
54
54
  xkt_files?: { version: number; file: string }[];