3dviewer-sdk 1.1.8 → 1.1.9
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/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -1
- package/dist/index.mjs +2 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -127,6 +127,7 @@ type SheetListItem = {
|
|
|
127
127
|
name: string;
|
|
128
128
|
is3D?: boolean;
|
|
129
129
|
viewId?: string;
|
|
130
|
+
cacheStatus?: number;
|
|
130
131
|
};
|
|
131
132
|
type SdkViewType = "cad" | "saved";
|
|
132
133
|
type SdkViewItem = {
|
|
@@ -262,6 +263,7 @@ type ViewerEventMap = {
|
|
|
262
263
|
name: string;
|
|
263
264
|
is3D?: boolean;
|
|
264
265
|
viewId?: string;
|
|
266
|
+
cacheStatus?: number;
|
|
265
267
|
}[];
|
|
266
268
|
activeSheetId?: string | number | null;
|
|
267
269
|
timestamp: number;
|
package/dist/index.d.ts
CHANGED
|
@@ -127,6 +127,7 @@ type SheetListItem = {
|
|
|
127
127
|
name: string;
|
|
128
128
|
is3D?: boolean;
|
|
129
129
|
viewId?: string;
|
|
130
|
+
cacheStatus?: number;
|
|
130
131
|
};
|
|
131
132
|
type SdkViewType = "cad" | "saved";
|
|
132
133
|
type SdkViewItem = {
|
|
@@ -262,6 +263,7 @@ type ViewerEventMap = {
|
|
|
262
263
|
name: string;
|
|
263
264
|
is3D?: boolean;
|
|
264
265
|
viewId?: string;
|
|
266
|
+
cacheStatus?: number;
|
|
265
267
|
}[];
|
|
266
268
|
activeSheetId?: string | number | null;
|
|
267
269
|
timestamp: number;
|
package/dist/index.js
CHANGED
|
@@ -1814,7 +1814,8 @@ var Viewer3D = class {
|
|
|
1814
1814
|
id: sheet.id,
|
|
1815
1815
|
name: String((_a2 = sheet.name) != null ? _a2 : ""),
|
|
1816
1816
|
is3D: Boolean(sheet.is3D),
|
|
1817
|
-
viewId: sheet.viewId ? String(sheet.viewId) : void 0
|
|
1817
|
+
viewId: sheet.viewId ? String(sheet.viewId) : void 0,
|
|
1818
|
+
cacheStatus: typeof sheet.cacheStatus === "number" ? sheet.cacheStatus : void 0
|
|
1818
1819
|
};
|
|
1819
1820
|
}),
|
|
1820
1821
|
activeSheetId: (_b = payload.activeSheetId) != null ? _b : null,
|
package/dist/index.mjs
CHANGED
|
@@ -1788,7 +1788,8 @@ var Viewer3D = class {
|
|
|
1788
1788
|
id: sheet.id,
|
|
1789
1789
|
name: String((_a2 = sheet.name) != null ? _a2 : ""),
|
|
1790
1790
|
is3D: Boolean(sheet.is3D),
|
|
1791
|
-
viewId: sheet.viewId ? String(sheet.viewId) : void 0
|
|
1791
|
+
viewId: sheet.viewId ? String(sheet.viewId) : void 0,
|
|
1792
|
+
cacheStatus: typeof sheet.cacheStatus === "number" ? sheet.cacheStatus : void 0
|
|
1792
1793
|
};
|
|
1793
1794
|
}),
|
|
1794
1795
|
activeSheetId: (_b = payload.activeSheetId) != null ? _b : null,
|