@smplrspace/smplr-loader 2.58.1-beta.2 → 2.58.1-beta.21
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/generated/smplr.d.ts +291 -18
- package/package.json +1 -1
|
@@ -77,7 +77,10 @@ size: IMaybe<ISimpleType<number>>;
|
|
|
77
77
|
media: IMaybe<ISimpleType<string>>;
|
|
78
78
|
is360: IOptionalIType<ISimpleType<boolean>, [undefined]>;
|
|
79
79
|
direction: IMaybe<ISimpleType<number>>;
|
|
80
|
+
} & {
|
|
80
81
|
layers: IArrayType<ISimpleType<string>>;
|
|
82
|
+
} & {
|
|
83
|
+
extras: IMaybe<IType<FeatureExtras, FeatureExtras, FeatureExtras>>;
|
|
81
84
|
}, {
|
|
82
85
|
readonly json: JsonAnnotation;
|
|
83
86
|
} & {
|
|
@@ -91,7 +94,14 @@ setMedia(url: string | undefined): void;
|
|
|
91
94
|
setIs360(is360: boolean): void;
|
|
92
95
|
setDirection(angle: number | undefined): void;
|
|
93
96
|
regenerateId(randomizer: string): void;
|
|
97
|
+
} & {
|
|
94
98
|
setLayers(layers: string[]): void;
|
|
99
|
+
} & {
|
|
100
|
+
setExtras(extras: FeatureExtras | undefined): void;
|
|
101
|
+
mergeExtras(extras: FeatureExtras): void;
|
|
102
|
+
setExtrasEntry(key: string, value: JsonValue): void;
|
|
103
|
+
removeExtrasEntry(key: string): void;
|
|
104
|
+
renameExtrasKey(oldKey: string, newKey: string): void;
|
|
95
105
|
}, _NotCustomized, _NotCustomized>;
|
|
96
106
|
|
|
97
107
|
declare type AnnotationType = 'classic' | 'entrance';
|
|
@@ -483,6 +493,8 @@ height: number;
|
|
|
483
493
|
}, _NotCustomized, _NotCustomized>, [undefined]>;
|
|
484
494
|
}, {}, _NotCustomized, _NotCustomized>;
|
|
485
495
|
|
|
496
|
+
declare type FeatureExtras = Record<string, JsonValue>;
|
|
497
|
+
|
|
486
498
|
declare interface Filter {
|
|
487
499
|
background: {
|
|
488
500
|
clearColor: string;
|
|
@@ -551,7 +563,8 @@ export declare interface Furniture {
|
|
|
551
563
|
dimensions: JsonObjectDimensions;
|
|
552
564
|
configuration?: object;
|
|
553
565
|
external?: boolean;
|
|
554
|
-
layers
|
|
566
|
+
layers: string[];
|
|
567
|
+
extras?: FeatureExtras;
|
|
555
568
|
}
|
|
556
569
|
|
|
557
570
|
export declare type FurnitureData = BaseData & {
|
|
@@ -775,7 +788,10 @@ removePoint(id: string): void;
|
|
|
775
788
|
} & {
|
|
776
789
|
movePoint(id: string, { r, t }: SICanvasPoint): void;
|
|
777
790
|
}, _NotCustomized, _NotCustomized>>;
|
|
791
|
+
} & {
|
|
778
792
|
layers: IArrayType<ISimpleType<string>>;
|
|
793
|
+
} & {
|
|
794
|
+
extras: IMaybe<IType<FeatureExtras, FeatureExtras, FeatureExtras>>;
|
|
779
795
|
}, {
|
|
780
796
|
readonly json: JsonGround;
|
|
781
797
|
} & {
|
|
@@ -791,7 +807,6 @@ segments: SOGroundSegment[];
|
|
|
791
807
|
}): void;
|
|
792
808
|
removeHole(holeId: string): void;
|
|
793
809
|
replaceSegments(segments: SIGroundSegment[]): void;
|
|
794
|
-
setLayers(layers: string[]): void;
|
|
795
810
|
} & {
|
|
796
811
|
readonly points: SOCanvasPoint[];
|
|
797
812
|
readonly geometry: SegmentGeometry;
|
|
@@ -804,6 +819,14 @@ close(): void;
|
|
|
804
819
|
removePoint(id: string): void;
|
|
805
820
|
} & {
|
|
806
821
|
movePoint(id: string, { r, t }: SICanvasPoint): void;
|
|
822
|
+
} & {
|
|
823
|
+
setLayers(layers: string[]): void;
|
|
824
|
+
} & {
|
|
825
|
+
setExtras(extras: FeatureExtras | undefined): void;
|
|
826
|
+
mergeExtras(extras: FeatureExtras): void;
|
|
827
|
+
setExtrasEntry(key: string, value: JsonValue): void;
|
|
828
|
+
removeExtrasEntry(key: string): void;
|
|
829
|
+
renameExtrasKey(oldKey: string, newKey: string): void;
|
|
807
830
|
}, _NotCustomized, _NotCustomized>;
|
|
808
831
|
|
|
809
832
|
declare type GroundFootprintGetter<C> = (args: {
|
|
@@ -1124,6 +1147,7 @@ declare interface JsonAnnotation {
|
|
|
1124
1147
|
is360: boolean;
|
|
1125
1148
|
direction?: number;
|
|
1126
1149
|
layers: string[];
|
|
1150
|
+
extras?: FeatureExtras;
|
|
1127
1151
|
}
|
|
1128
1152
|
|
|
1129
1153
|
declare interface JsonGround {
|
|
@@ -1134,6 +1158,7 @@ declare interface JsonGround {
|
|
|
1134
1158
|
segments: JsonAbstractSegment[];
|
|
1135
1159
|
holes: JsonHole[];
|
|
1136
1160
|
layers: string[];
|
|
1161
|
+
extras?: FeatureExtras;
|
|
1137
1162
|
}
|
|
1138
1163
|
|
|
1139
1164
|
declare interface JsonGroundOptions {
|
|
@@ -1177,6 +1202,7 @@ declare interface JsonRoof {
|
|
|
1177
1202
|
name: string;
|
|
1178
1203
|
options: SORoofOptions;
|
|
1179
1204
|
segments: SORoofSegment[];
|
|
1205
|
+
extras?: FeatureExtras;
|
|
1180
1206
|
}
|
|
1181
1207
|
|
|
1182
1208
|
declare interface JsonSpace {
|
|
@@ -1196,8 +1222,13 @@ declare interface JsonStair {
|
|
|
1196
1222
|
style: Style;
|
|
1197
1223
|
color: Color_2;
|
|
1198
1224
|
layers: string[];
|
|
1225
|
+
extras?: FeatureExtras;
|
|
1199
1226
|
}
|
|
1200
1227
|
|
|
1228
|
+
declare type JsonValue = string | number | boolean | null | JsonValue[] | {
|
|
1229
|
+
[key: string]: JsonValue;
|
|
1230
|
+
};
|
|
1231
|
+
|
|
1201
1232
|
declare interface JsonWall {
|
|
1202
1233
|
id: string;
|
|
1203
1234
|
type: 'wall';
|
|
@@ -1205,6 +1236,7 @@ declare interface JsonWall {
|
|
|
1205
1236
|
options: JsonWallOptions;
|
|
1206
1237
|
segments: JsonWallSegment[];
|
|
1207
1238
|
layers: string[];
|
|
1239
|
+
extras?: FeatureExtras;
|
|
1208
1240
|
}
|
|
1209
1241
|
|
|
1210
1242
|
declare interface JsonWallOpening {
|
|
@@ -1215,6 +1247,7 @@ declare interface JsonWallOpening {
|
|
|
1215
1247
|
position?: JsonWallOpeningPosition;
|
|
1216
1248
|
options: SOWallOpeningOptions;
|
|
1217
1249
|
layers: string[];
|
|
1250
|
+
extras?: FeatureExtras;
|
|
1218
1251
|
}
|
|
1219
1252
|
|
|
1220
1253
|
declare interface JsonWallOpeningDimensions {
|
|
@@ -1404,7 +1437,10 @@ removePoint(id: string): void;
|
|
|
1404
1437
|
} & {
|
|
1405
1438
|
movePoint(id: string, { r, t }: SICanvasPoint): void;
|
|
1406
1439
|
}, _NotCustomized, _NotCustomized>>;
|
|
1440
|
+
} & {
|
|
1407
1441
|
layers: IArrayType<ISimpleType<string>>;
|
|
1442
|
+
} & {
|
|
1443
|
+
extras: IMaybe<IType<FeatureExtras, FeatureExtras, FeatureExtras>>;
|
|
1408
1444
|
}, {
|
|
1409
1445
|
readonly json: JsonGround;
|
|
1410
1446
|
} & {
|
|
@@ -1420,7 +1456,6 @@ segments: SOGroundSegment[];
|
|
|
1420
1456
|
}) | undefined): void;
|
|
1421
1457
|
removeHole(holeId: string): void;
|
|
1422
1458
|
replaceSegments(segments: SIGroundSegment[]): void;
|
|
1423
|
-
setLayers(layers: string[]): void;
|
|
1424
1459
|
} & {
|
|
1425
1460
|
readonly points: SOCanvasPoint[];
|
|
1426
1461
|
readonly geometry: SegmentGeometry;
|
|
@@ -1433,6 +1468,14 @@ close(): void;
|
|
|
1433
1468
|
removePoint(id: string): void;
|
|
1434
1469
|
} & {
|
|
1435
1470
|
movePoint(id: string, { r, t }: SICanvasPoint): void;
|
|
1471
|
+
} & {
|
|
1472
|
+
setLayers(layers: string[]): void;
|
|
1473
|
+
} & {
|
|
1474
|
+
setExtras(extras: FeatureExtras | undefined): void;
|
|
1475
|
+
mergeExtras(extras: FeatureExtras): void;
|
|
1476
|
+
setExtrasEntry(key: string, value: JsonValue): void;
|
|
1477
|
+
removeExtrasEntry(key: string): void;
|
|
1478
|
+
renameExtrasKey(oldKey: string, newKey: string): void;
|
|
1436
1479
|
}, _NotCustomized, _NotCustomized>>, [undefined]>;
|
|
1437
1480
|
walls: IOptionalIType<IArrayType<IModelType< {
|
|
1438
1481
|
id: IOptionalIType<ISimpleType<string>, [undefined]>;
|
|
@@ -1531,7 +1574,10 @@ setRailingStyle(railingStyle: string): void;
|
|
|
1531
1574
|
} & {
|
|
1532
1575
|
setOpenFrom(openFrom: string): void;
|
|
1533
1576
|
}, _NotCustomized, _NotCustomized>, [undefined]>;
|
|
1577
|
+
} & {
|
|
1534
1578
|
layers: IArrayType<ISimpleType<string>>;
|
|
1579
|
+
} & {
|
|
1580
|
+
extras: IMaybe<IType<FeatureExtras, FeatureExtras, FeatureExtras>>;
|
|
1535
1581
|
}, {
|
|
1536
1582
|
readonly json: JsonWallOpening;
|
|
1537
1583
|
readonly segment: IWallSegment;
|
|
@@ -1552,10 +1598,17 @@ setTargetPanelWidth(targetPanelWidth: number | undefined): void;
|
|
|
1552
1598
|
moveTo(position: SIWallOpeningPosition): void;
|
|
1553
1599
|
moveInDirection(direction: URDL, distance?: number): void;
|
|
1554
1600
|
remove(): void;
|
|
1555
|
-
setLayers(layers: string[]): void;
|
|
1556
1601
|
} & {
|
|
1557
1602
|
expandToFullSegment(): void;
|
|
1558
1603
|
addToAllSegmentsInWall(): void;
|
|
1604
|
+
} & {
|
|
1605
|
+
setLayers(layers: string[]): void;
|
|
1606
|
+
} & {
|
|
1607
|
+
setExtras(extras: FeatureExtras | undefined): void;
|
|
1608
|
+
mergeExtras(extras: FeatureExtras): void;
|
|
1609
|
+
setExtrasEntry(key: string, value: JsonValue): void;
|
|
1610
|
+
removeExtrasEntry(key: string): void;
|
|
1611
|
+
renameExtrasKey(oldKey: string, newKey: string): void;
|
|
1559
1612
|
}, _NotCustomized, _NotCustomized>>;
|
|
1560
1613
|
}, {
|
|
1561
1614
|
readonly superJson: JsonAbstractSegment;
|
|
@@ -1569,7 +1622,10 @@ addOpening(opening: SIWallOpening): void;
|
|
|
1569
1622
|
removeOpening(id: string): void;
|
|
1570
1623
|
regenerateIds(randomizer: string): void;
|
|
1571
1624
|
}, _NotCustomized, _NotCustomized>>;
|
|
1625
|
+
} & {
|
|
1572
1626
|
layers: IArrayType<ISimpleType<string>>;
|
|
1627
|
+
} & {
|
|
1628
|
+
extras: IMaybe<IType<FeatureExtras, FeatureExtras, FeatureExtras>>;
|
|
1573
1629
|
}, {
|
|
1574
1630
|
readonly json: JsonWall;
|
|
1575
1631
|
} & {
|
|
@@ -1581,7 +1637,6 @@ regenerateIds(randomizer: string): void;
|
|
|
1581
1637
|
} & {
|
|
1582
1638
|
rename(name: string): void;
|
|
1583
1639
|
ensureName(): void;
|
|
1584
|
-
setLayers(layers: string[]): void;
|
|
1585
1640
|
splitWallAtPoint({ pointId }: {
|
|
1586
1641
|
pointId: string;
|
|
1587
1642
|
}): void;
|
|
@@ -1597,6 +1652,14 @@ close(): void;
|
|
|
1597
1652
|
removePoint(id: string): void;
|
|
1598
1653
|
} & {
|
|
1599
1654
|
movePoint(id: string, { r, t }: SICanvasPoint): void;
|
|
1655
|
+
} & {
|
|
1656
|
+
setLayers(layers: string[]): void;
|
|
1657
|
+
} & {
|
|
1658
|
+
setExtras(extras: FeatureExtras | undefined): void;
|
|
1659
|
+
mergeExtras(extras: FeatureExtras): void;
|
|
1660
|
+
setExtrasEntry(key: string, value: JsonValue): void;
|
|
1661
|
+
removeExtrasEntry(key: string): void;
|
|
1662
|
+
renameExtrasKey(oldKey: string, newKey: string): void;
|
|
1600
1663
|
}, _NotCustomized, _NotCustomized>>, [undefined]>;
|
|
1601
1664
|
roofs: IOptionalIType<IArrayType<IModelType< {
|
|
1602
1665
|
id: IOptionalIType<ISimpleType<string>, [undefined]>;
|
|
@@ -1642,6 +1705,8 @@ readonly centerPoint: SOCanvasPoint;
|
|
|
1642
1705
|
} & {
|
|
1643
1706
|
regenerateIds(randomizer: string): void;
|
|
1644
1707
|
}, _NotCustomized, _NotCustomized>>;
|
|
1708
|
+
} & {
|
|
1709
|
+
extras: IMaybe<IType<FeatureExtras, FeatureExtras, FeatureExtras>>;
|
|
1645
1710
|
}, {
|
|
1646
1711
|
readonly json: JsonRoof;
|
|
1647
1712
|
} & {
|
|
@@ -1665,6 +1730,12 @@ close(): void;
|
|
|
1665
1730
|
removePoint(id: string): void;
|
|
1666
1731
|
} & {
|
|
1667
1732
|
movePoint(id: string, { r, t }: SICanvasPoint): void;
|
|
1733
|
+
} & {
|
|
1734
|
+
setExtras(extras: FeatureExtras | undefined): void;
|
|
1735
|
+
mergeExtras(extras: FeatureExtras): void;
|
|
1736
|
+
setExtrasEntry(key: string, value: JsonValue): void;
|
|
1737
|
+
removeExtrasEntry(key: string): void;
|
|
1738
|
+
renameExtrasKey(oldKey: string, newKey: string): void;
|
|
1668
1739
|
}, _NotCustomized, _NotCustomized>>, [undefined]>;
|
|
1669
1740
|
stairs: IArrayType<IModelType< {
|
|
1670
1741
|
id: IOptionalIType<ISimpleType<string>, [undefined]>;
|
|
@@ -1693,7 +1764,10 @@ baseHeight: IMaybe<ISimpleType<number>>;
|
|
|
1693
1764
|
height: IMaybe<ISimpleType<number>>;
|
|
1694
1765
|
style: IOptionalIType<ISimpleType<"slope" | "thin" | "thick" | "block">, [undefined]>;
|
|
1695
1766
|
color: IOptionalIType<ISimpleType<"white" | "grey" | "darkgrey">, [undefined]>;
|
|
1767
|
+
} & {
|
|
1696
1768
|
layers: IArrayType<ISimpleType<string>>;
|
|
1769
|
+
} & {
|
|
1770
|
+
extras: IMaybe<IType<FeatureExtras, FeatureExtras, FeatureExtras>>;
|
|
1697
1771
|
}, {
|
|
1698
1772
|
readonly json: JsonStair;
|
|
1699
1773
|
} & {
|
|
@@ -1709,7 +1783,14 @@ dt: number;
|
|
|
1709
1783
|
}): void;
|
|
1710
1784
|
remove(): void;
|
|
1711
1785
|
regenerateIds(randomizer: string): void;
|
|
1786
|
+
} & {
|
|
1712
1787
|
setLayers(layers: string[]): void;
|
|
1788
|
+
} & {
|
|
1789
|
+
setExtras(extras: FeatureExtras | undefined): void;
|
|
1790
|
+
mergeExtras(extras: FeatureExtras): void;
|
|
1791
|
+
setExtrasEntry(key: string, value: JsonValue): void;
|
|
1792
|
+
removeExtrasEntry(key: string): void;
|
|
1793
|
+
renameExtrasKey(oldKey: string, newKey: string): void;
|
|
1713
1794
|
}, _NotCustomized, _NotCustomized>>;
|
|
1714
1795
|
annotations: IArrayType<IModelType< {
|
|
1715
1796
|
id: IOptionalIType<ISimpleType<string>, [undefined]>;
|
|
@@ -1722,7 +1803,10 @@ size: IMaybe<ISimpleType<number>>;
|
|
|
1722
1803
|
media: IMaybe<ISimpleType<string>>;
|
|
1723
1804
|
is360: IOptionalIType<ISimpleType<boolean>, [undefined]>;
|
|
1724
1805
|
direction: IMaybe<ISimpleType<number>>;
|
|
1806
|
+
} & {
|
|
1725
1807
|
layers: IArrayType<ISimpleType<string>>;
|
|
1808
|
+
} & {
|
|
1809
|
+
extras: IMaybe<IType<FeatureExtras, FeatureExtras, FeatureExtras>>;
|
|
1726
1810
|
}, {
|
|
1727
1811
|
readonly json: JsonAnnotation;
|
|
1728
1812
|
} & {
|
|
@@ -1736,7 +1820,14 @@ setMedia(url: string | undefined): void;
|
|
|
1736
1820
|
setIs360(is360: boolean): void;
|
|
1737
1821
|
setDirection(angle: number | undefined): void;
|
|
1738
1822
|
regenerateId(randomizer: string): void;
|
|
1823
|
+
} & {
|
|
1739
1824
|
setLayers(layers: string[]): void;
|
|
1825
|
+
} & {
|
|
1826
|
+
setExtras(extras: FeatureExtras | undefined): void;
|
|
1827
|
+
mergeExtras(extras: FeatureExtras): void;
|
|
1828
|
+
setExtrasEntry(key: string, value: JsonValue): void;
|
|
1829
|
+
removeExtrasEntry(key: string): void;
|
|
1830
|
+
renameExtrasKey(oldKey: string, newKey: string): void;
|
|
1740
1831
|
}, _NotCustomized, _NotCustomized>>;
|
|
1741
1832
|
objects: IArrayType<IModelType< {
|
|
1742
1833
|
catalogId: ISimpleType<string>;
|
|
@@ -1770,7 +1861,10 @@ height: number;
|
|
|
1770
1861
|
}, _NotCustomized, _NotCustomized>, [undefined]>;
|
|
1771
1862
|
configuration: IMaybe<IType<Partial<ParametricObjectConfiguration>, Partial<ParametricObjectConfiguration>, Partial<ParametricObjectConfiguration>>>;
|
|
1772
1863
|
external: IOptionalIType<ISimpleType<boolean>, [undefined]>;
|
|
1864
|
+
} & {
|
|
1773
1865
|
layers: IArrayType<ISimpleType<string>>;
|
|
1866
|
+
} & {
|
|
1867
|
+
extras: IMaybe<IType<FeatureExtras, FeatureExtras, FeatureExtras>>;
|
|
1774
1868
|
}, {
|
|
1775
1869
|
readonly json: Furniture;
|
|
1776
1870
|
} & {
|
|
@@ -1783,9 +1877,16 @@ configure(configurationChanges: Partial<ParametricObjectConfiguration>): void;
|
|
|
1783
1877
|
remove(): void;
|
|
1784
1878
|
regenerateId(randomizer: string): void;
|
|
1785
1879
|
setExternal(external: boolean): void;
|
|
1786
|
-
setLayers(layers: string[]): void;
|
|
1787
1880
|
} & {
|
|
1788
1881
|
resizeAndMoveTo(dimensions: Partial<SIObjectDimensions>, position: Partial<SILevelCoord3d>): void;
|
|
1882
|
+
} & {
|
|
1883
|
+
setLayers(layers: string[]): void;
|
|
1884
|
+
} & {
|
|
1885
|
+
setExtras(extras: FeatureExtras | undefined): void;
|
|
1886
|
+
mergeExtras(extras: FeatureExtras): void;
|
|
1887
|
+
setExtrasEntry(key: string, value: JsonValue): void;
|
|
1888
|
+
removeExtrasEntry(key: string): void;
|
|
1889
|
+
renameExtrasKey(oldKey: string, newKey: string): void;
|
|
1789
1890
|
}, _NotCustomized, _NotCustomized>>;
|
|
1790
1891
|
floorplan: IOptionalIType<IModelType< {
|
|
1791
1892
|
url: IMaybe<ISimpleType<string>>;
|
|
@@ -1841,6 +1942,7 @@ removeAllGrounds(): void;
|
|
|
1841
1942
|
newWall(wall?: Omit<SIWall, 'segments'> & {
|
|
1842
1943
|
segments: SOAbstractSegment[] | SOWallSegment[];
|
|
1843
1944
|
}): void;
|
|
1945
|
+
addWalls(walls: SIWall[]): void;
|
|
1844
1946
|
removeWall(id: string): void;
|
|
1845
1947
|
removeAllWalls(): void;
|
|
1846
1948
|
newRoof(): void;
|
|
@@ -1865,6 +1967,7 @@ options: JsonWallOptions;
|
|
|
1865
1967
|
layers: string[];
|
|
1866
1968
|
}): void;
|
|
1867
1969
|
clear(): void;
|
|
1970
|
+
removeParkingCluster(clusterId: string): void;
|
|
1868
1971
|
}, _NotCustomized, _NotCustomized>;
|
|
1869
1972
|
|
|
1870
1973
|
declare const LevelCoord3d: IModelType< {
|
|
@@ -2041,7 +2144,7 @@ declare interface Material {
|
|
|
2041
2144
|
}
|
|
2042
2145
|
|
|
2043
2146
|
declare interface MeshSmplrData {
|
|
2044
|
-
type:
|
|
2147
|
+
type: MeshType;
|
|
2045
2148
|
isInstanciated?: boolean;
|
|
2046
2149
|
instances?: Instance_2[] | null;
|
|
2047
2150
|
modelDimensions?: Dimensions;
|
|
@@ -2054,6 +2157,7 @@ declare interface MeshSmplrData {
|
|
|
2054
2157
|
onDropCompute?: string[];
|
|
2055
2158
|
layer?: RenderableDataLayer<DataLayer<UnknownData>>;
|
|
2056
2159
|
partOfFacade?: boolean;
|
|
2160
|
+
interiorPart?: boolean;
|
|
2057
2161
|
annotation?: SOAnnotation;
|
|
2058
2162
|
instance?: PolylineInstance<UnknownData> | IconInstance<UnknownData> | PolygonInstance<UnknownData>;
|
|
2059
2163
|
modelType?: 'gltf' | 'parametric';
|
|
@@ -2069,6 +2173,27 @@ declare interface MeshSmplrData {
|
|
|
2069
2173
|
panelIndex?: number;
|
|
2070
2174
|
}
|
|
2071
2175
|
|
|
2176
|
+
declare enum MeshType {
|
|
2177
|
+
Wall = "wall",
|
|
2178
|
+
Ground = "ground",
|
|
2179
|
+
Window = "window",
|
|
2180
|
+
WindowFrame = "window-frame",
|
|
2181
|
+
Door = "door",
|
|
2182
|
+
DoorFrame = "door-frame",
|
|
2183
|
+
SlidingDoorPanel = "sliding-door-panel",
|
|
2184
|
+
SlidingDoorPanelFrame = "sliding-door-panel-frame",
|
|
2185
|
+
Railing = "railing",
|
|
2186
|
+
Roof = "roof",
|
|
2187
|
+
Stairs = "stairs",
|
|
2188
|
+
Annotation = "annotation",
|
|
2189
|
+
Compass = "compass",
|
|
2190
|
+
Facade = "facade",
|
|
2191
|
+
Floorplan = "floorplan",
|
|
2192
|
+
Object = "object",
|
|
2193
|
+
ObjectPlaceholder = "object-placeholder",
|
|
2194
|
+
DataLayer = "data-layer"
|
|
2195
|
+
}
|
|
2196
|
+
|
|
2072
2197
|
export declare type NoData = Record<string, never>;
|
|
2073
2198
|
|
|
2074
2199
|
declare type NominalDimensionsGetter<C> = (args: {
|
|
@@ -2187,7 +2312,10 @@ height: number;
|
|
|
2187
2312
|
}, _NotCustomized, _NotCustomized>, [undefined]>;
|
|
2188
2313
|
configuration: IMaybe<IType<Partial<ParametricObjectConfiguration>, Partial<ParametricObjectConfiguration>, Partial<ParametricObjectConfiguration>>>;
|
|
2189
2314
|
external: IOptionalIType<ISimpleType<boolean>, [undefined]>;
|
|
2315
|
+
} & {
|
|
2190
2316
|
layers: IArrayType<ISimpleType<string>>;
|
|
2317
|
+
} & {
|
|
2318
|
+
extras: IMaybe<IType<FeatureExtras, FeatureExtras, FeatureExtras>>;
|
|
2191
2319
|
}, {
|
|
2192
2320
|
readonly json: Furniture;
|
|
2193
2321
|
} & {
|
|
@@ -2200,9 +2328,16 @@ configure(configurationChanges: Partial<ParametricObjectConfiguration>): void;
|
|
|
2200
2328
|
remove(): void;
|
|
2201
2329
|
regenerateId(randomizer: string): void;
|
|
2202
2330
|
setExternal(external: boolean): void;
|
|
2203
|
-
setLayers(layers: string[]): void;
|
|
2204
2331
|
} & {
|
|
2205
2332
|
resizeAndMoveTo(dimensions: Partial<SIObjectDimensions>, position: Partial<SILevelCoord3d>): void;
|
|
2333
|
+
} & {
|
|
2334
|
+
setLayers(layers: string[]): void;
|
|
2335
|
+
} & {
|
|
2336
|
+
setExtras(extras: FeatureExtras | undefined): void;
|
|
2337
|
+
mergeExtras(extras: FeatureExtras): void;
|
|
2338
|
+
setExtrasEntry(key: string, value: JsonValue): void;
|
|
2339
|
+
removeExtrasEntry(key: string): void;
|
|
2340
|
+
renameExtrasKey(oldKey: string, newKey: string): void;
|
|
2206
2341
|
}, _NotCustomized, _NotCustomized>;
|
|
2207
2342
|
|
|
2208
2343
|
declare const ObjectDimensions: IModelType< {
|
|
@@ -2246,6 +2381,7 @@ export declare interface Opening {
|
|
|
2246
2381
|
};
|
|
2247
2382
|
options: SOWallOpeningOptions;
|
|
2248
2383
|
coordinates: SmplrCoord3d[];
|
|
2384
|
+
extras?: FeatureExtras;
|
|
2249
2385
|
wallId: string;
|
|
2250
2386
|
}
|
|
2251
2387
|
|
|
@@ -2651,7 +2787,7 @@ export declare class QueryClient {
|
|
|
2651
2787
|
name: string;
|
|
2652
2788
|
created_at: string;
|
|
2653
2789
|
deprecated_id: string;
|
|
2654
|
-
}[]>;
|
|
2790
|
+
}[] | undefined>;
|
|
2655
2791
|
getSpace(spaceId: string, { useCache }?: {
|
|
2656
2792
|
useCache?: boolean | undefined;
|
|
2657
2793
|
}): Promise<{
|
|
@@ -3017,6 +3153,8 @@ readonly centerPoint: SOCanvasPoint;
|
|
|
3017
3153
|
} & {
|
|
3018
3154
|
regenerateIds(randomizer: string): void;
|
|
3019
3155
|
}, _NotCustomized, _NotCustomized>>;
|
|
3156
|
+
} & {
|
|
3157
|
+
extras: IMaybe<IType<FeatureExtras, FeatureExtras, FeatureExtras>>;
|
|
3020
3158
|
}, {
|
|
3021
3159
|
readonly json: JsonRoof;
|
|
3022
3160
|
} & {
|
|
@@ -3040,6 +3178,12 @@ close(): void;
|
|
|
3040
3178
|
removePoint(id: string): void;
|
|
3041
3179
|
} & {
|
|
3042
3180
|
movePoint(id: string, { r, t }: SICanvasPoint): void;
|
|
3181
|
+
} & {
|
|
3182
|
+
setExtras(extras: FeatureExtras | undefined): void;
|
|
3183
|
+
mergeExtras(extras: FeatureExtras): void;
|
|
3184
|
+
setExtrasEntry(key: string, value: JsonValue): void;
|
|
3185
|
+
removeExtrasEntry(key: string): void;
|
|
3186
|
+
renameExtrasKey(oldKey: string, newKey: string): void;
|
|
3043
3187
|
}, _NotCustomized, _NotCustomized>;
|
|
3044
3188
|
|
|
3045
3189
|
declare const RoofOptions: IModelType< {
|
|
@@ -3502,7 +3646,10 @@ removePoint(id: string): void;
|
|
|
3502
3646
|
} & {
|
|
3503
3647
|
movePoint(id: string, { r, t }: SICanvasPoint): void;
|
|
3504
3648
|
}, _NotCustomized, _NotCustomized>>;
|
|
3649
|
+
} & {
|
|
3505
3650
|
layers: IArrayType<ISimpleType<string>>;
|
|
3651
|
+
} & {
|
|
3652
|
+
extras: IMaybe<IType<FeatureExtras, FeatureExtras, FeatureExtras>>;
|
|
3506
3653
|
}, {
|
|
3507
3654
|
readonly json: JsonGround;
|
|
3508
3655
|
} & {
|
|
@@ -3518,7 +3665,6 @@ segments: SOGroundSegment[];
|
|
|
3518
3665
|
}) | undefined): void;
|
|
3519
3666
|
removeHole(holeId: string): void;
|
|
3520
3667
|
replaceSegments(segments: SIGroundSegment[]): void;
|
|
3521
|
-
setLayers(layers: string[]): void;
|
|
3522
3668
|
} & {
|
|
3523
3669
|
readonly points: SOCanvasPoint[];
|
|
3524
3670
|
readonly geometry: SegmentGeometry;
|
|
@@ -3531,6 +3677,14 @@ close(): void;
|
|
|
3531
3677
|
removePoint(id: string): void;
|
|
3532
3678
|
} & {
|
|
3533
3679
|
movePoint(id: string, { r, t }: SICanvasPoint): void;
|
|
3680
|
+
} & {
|
|
3681
|
+
setLayers(layers: string[]): void;
|
|
3682
|
+
} & {
|
|
3683
|
+
setExtras(extras: FeatureExtras | undefined): void;
|
|
3684
|
+
mergeExtras(extras: FeatureExtras): void;
|
|
3685
|
+
setExtrasEntry(key: string, value: JsonValue): void;
|
|
3686
|
+
removeExtrasEntry(key: string): void;
|
|
3687
|
+
renameExtrasKey(oldKey: string, newKey: string): void;
|
|
3534
3688
|
}, _NotCustomized, _NotCustomized>>, [undefined]>;
|
|
3535
3689
|
walls: IOptionalIType<IArrayType<IModelType< {
|
|
3536
3690
|
id: IOptionalIType<ISimpleType<string>, [undefined]>;
|
|
@@ -3629,7 +3783,10 @@ setRailingStyle(railingStyle: string): void;
|
|
|
3629
3783
|
} & {
|
|
3630
3784
|
setOpenFrom(openFrom: string): void;
|
|
3631
3785
|
}, _NotCustomized, _NotCustomized>, [undefined]>;
|
|
3786
|
+
} & {
|
|
3632
3787
|
layers: IArrayType<ISimpleType<string>>;
|
|
3788
|
+
} & {
|
|
3789
|
+
extras: IMaybe<IType<FeatureExtras, FeatureExtras, FeatureExtras>>;
|
|
3633
3790
|
}, {
|
|
3634
3791
|
readonly json: JsonWallOpening;
|
|
3635
3792
|
readonly segment: IWallSegment;
|
|
@@ -3650,10 +3807,17 @@ setTargetPanelWidth(targetPanelWidth: number | undefined): void;
|
|
|
3650
3807
|
moveTo(position: SIWallOpeningPosition): void;
|
|
3651
3808
|
moveInDirection(direction: URDL, distance?: number): void;
|
|
3652
3809
|
remove(): void;
|
|
3653
|
-
setLayers(layers: string[]): void;
|
|
3654
3810
|
} & {
|
|
3655
3811
|
expandToFullSegment(): void;
|
|
3656
3812
|
addToAllSegmentsInWall(): void;
|
|
3813
|
+
} & {
|
|
3814
|
+
setLayers(layers: string[]): void;
|
|
3815
|
+
} & {
|
|
3816
|
+
setExtras(extras: FeatureExtras | undefined): void;
|
|
3817
|
+
mergeExtras(extras: FeatureExtras): void;
|
|
3818
|
+
setExtrasEntry(key: string, value: JsonValue): void;
|
|
3819
|
+
removeExtrasEntry(key: string): void;
|
|
3820
|
+
renameExtrasKey(oldKey: string, newKey: string): void;
|
|
3657
3821
|
}, _NotCustomized, _NotCustomized>>;
|
|
3658
3822
|
}, {
|
|
3659
3823
|
readonly superJson: JsonAbstractSegment;
|
|
@@ -3667,7 +3831,10 @@ addOpening(opening: SIWallOpening): void;
|
|
|
3667
3831
|
removeOpening(id: string): void;
|
|
3668
3832
|
regenerateIds(randomizer: string): void;
|
|
3669
3833
|
}, _NotCustomized, _NotCustomized>>;
|
|
3834
|
+
} & {
|
|
3670
3835
|
layers: IArrayType<ISimpleType<string>>;
|
|
3836
|
+
} & {
|
|
3837
|
+
extras: IMaybe<IType<FeatureExtras, FeatureExtras, FeatureExtras>>;
|
|
3671
3838
|
}, {
|
|
3672
3839
|
readonly json: JsonWall;
|
|
3673
3840
|
} & {
|
|
@@ -3679,7 +3846,6 @@ regenerateIds(randomizer: string): void;
|
|
|
3679
3846
|
} & {
|
|
3680
3847
|
rename(name: string): void;
|
|
3681
3848
|
ensureName(): void;
|
|
3682
|
-
setLayers(layers: string[]): void;
|
|
3683
3849
|
splitWallAtPoint({ pointId }: {
|
|
3684
3850
|
pointId: string;
|
|
3685
3851
|
}): void;
|
|
@@ -3695,6 +3861,14 @@ close(): void;
|
|
|
3695
3861
|
removePoint(id: string): void;
|
|
3696
3862
|
} & {
|
|
3697
3863
|
movePoint(id: string, { r, t }: SICanvasPoint): void;
|
|
3864
|
+
} & {
|
|
3865
|
+
setLayers(layers: string[]): void;
|
|
3866
|
+
} & {
|
|
3867
|
+
setExtras(extras: FeatureExtras | undefined): void;
|
|
3868
|
+
mergeExtras(extras: FeatureExtras): void;
|
|
3869
|
+
setExtrasEntry(key: string, value: JsonValue): void;
|
|
3870
|
+
removeExtrasEntry(key: string): void;
|
|
3871
|
+
renameExtrasKey(oldKey: string, newKey: string): void;
|
|
3698
3872
|
}, _NotCustomized, _NotCustomized>>, [undefined]>;
|
|
3699
3873
|
roofs: IOptionalIType<IArrayType<IModelType< {
|
|
3700
3874
|
id: IOptionalIType<ISimpleType<string>, [undefined]>;
|
|
@@ -3740,6 +3914,8 @@ readonly centerPoint: SOCanvasPoint;
|
|
|
3740
3914
|
} & {
|
|
3741
3915
|
regenerateIds(randomizer: string): void;
|
|
3742
3916
|
}, _NotCustomized, _NotCustomized>>;
|
|
3917
|
+
} & {
|
|
3918
|
+
extras: IMaybe<IType<FeatureExtras, FeatureExtras, FeatureExtras>>;
|
|
3743
3919
|
}, {
|
|
3744
3920
|
readonly json: JsonRoof;
|
|
3745
3921
|
} & {
|
|
@@ -3763,6 +3939,12 @@ close(): void;
|
|
|
3763
3939
|
removePoint(id: string): void;
|
|
3764
3940
|
} & {
|
|
3765
3941
|
movePoint(id: string, { r, t }: SICanvasPoint): void;
|
|
3942
|
+
} & {
|
|
3943
|
+
setExtras(extras: FeatureExtras | undefined): void;
|
|
3944
|
+
mergeExtras(extras: FeatureExtras): void;
|
|
3945
|
+
setExtrasEntry(key: string, value: JsonValue): void;
|
|
3946
|
+
removeExtrasEntry(key: string): void;
|
|
3947
|
+
renameExtrasKey(oldKey: string, newKey: string): void;
|
|
3766
3948
|
}, _NotCustomized, _NotCustomized>>, [undefined]>;
|
|
3767
3949
|
stairs: IArrayType<IModelType< {
|
|
3768
3950
|
id: IOptionalIType<ISimpleType<string>, [undefined]>;
|
|
@@ -3791,7 +3973,10 @@ baseHeight: IMaybe<ISimpleType<number>>;
|
|
|
3791
3973
|
height: IMaybe<ISimpleType<number>>;
|
|
3792
3974
|
style: IOptionalIType<ISimpleType<"slope" | "thin" | "thick" | "block">, [undefined]>;
|
|
3793
3975
|
color: IOptionalIType<ISimpleType<"white" | "grey" | "darkgrey">, [undefined]>;
|
|
3976
|
+
} & {
|
|
3794
3977
|
layers: IArrayType<ISimpleType<string>>;
|
|
3978
|
+
} & {
|
|
3979
|
+
extras: IMaybe<IType<FeatureExtras, FeatureExtras, FeatureExtras>>;
|
|
3795
3980
|
}, {
|
|
3796
3981
|
readonly json: JsonStair;
|
|
3797
3982
|
} & {
|
|
@@ -3807,7 +3992,14 @@ dt: number;
|
|
|
3807
3992
|
}): void;
|
|
3808
3993
|
remove(): void;
|
|
3809
3994
|
regenerateIds(randomizer: string): void;
|
|
3995
|
+
} & {
|
|
3810
3996
|
setLayers(layers: string[]): void;
|
|
3997
|
+
} & {
|
|
3998
|
+
setExtras(extras: FeatureExtras | undefined): void;
|
|
3999
|
+
mergeExtras(extras: FeatureExtras): void;
|
|
4000
|
+
setExtrasEntry(key: string, value: JsonValue): void;
|
|
4001
|
+
removeExtrasEntry(key: string): void;
|
|
4002
|
+
renameExtrasKey(oldKey: string, newKey: string): void;
|
|
3811
4003
|
}, _NotCustomized, _NotCustomized>>;
|
|
3812
4004
|
annotations: IArrayType<IModelType< {
|
|
3813
4005
|
id: IOptionalIType<ISimpleType<string>, [undefined]>;
|
|
@@ -3820,7 +4012,10 @@ size: IMaybe<ISimpleType<number>>;
|
|
|
3820
4012
|
media: IMaybe<ISimpleType<string>>;
|
|
3821
4013
|
is360: IOptionalIType<ISimpleType<boolean>, [undefined]>;
|
|
3822
4014
|
direction: IMaybe<ISimpleType<number>>;
|
|
4015
|
+
} & {
|
|
3823
4016
|
layers: IArrayType<ISimpleType<string>>;
|
|
4017
|
+
} & {
|
|
4018
|
+
extras: IMaybe<IType<FeatureExtras, FeatureExtras, FeatureExtras>>;
|
|
3824
4019
|
}, {
|
|
3825
4020
|
readonly json: JsonAnnotation;
|
|
3826
4021
|
} & {
|
|
@@ -3834,7 +4029,14 @@ setMedia(url: string | undefined): void;
|
|
|
3834
4029
|
setIs360(is360: boolean): void;
|
|
3835
4030
|
setDirection(angle: number | undefined): void;
|
|
3836
4031
|
regenerateId(randomizer: string): void;
|
|
4032
|
+
} & {
|
|
3837
4033
|
setLayers(layers: string[]): void;
|
|
4034
|
+
} & {
|
|
4035
|
+
setExtras(extras: FeatureExtras | undefined): void;
|
|
4036
|
+
mergeExtras(extras: FeatureExtras): void;
|
|
4037
|
+
setExtrasEntry(key: string, value: JsonValue): void;
|
|
4038
|
+
removeExtrasEntry(key: string): void;
|
|
4039
|
+
renameExtrasKey(oldKey: string, newKey: string): void;
|
|
3838
4040
|
}, _NotCustomized, _NotCustomized>>;
|
|
3839
4041
|
objects: IArrayType<IModelType< {
|
|
3840
4042
|
catalogId: ISimpleType<string>;
|
|
@@ -3868,7 +4070,10 @@ height: number;
|
|
|
3868
4070
|
}, _NotCustomized, _NotCustomized>, [undefined]>;
|
|
3869
4071
|
configuration: IMaybe<IType<Partial<ParametricObjectConfiguration>, Partial<ParametricObjectConfiguration>, Partial<ParametricObjectConfiguration>>>;
|
|
3870
4072
|
external: IOptionalIType<ISimpleType<boolean>, [undefined]>;
|
|
4073
|
+
} & {
|
|
3871
4074
|
layers: IArrayType<ISimpleType<string>>;
|
|
4075
|
+
} & {
|
|
4076
|
+
extras: IMaybe<IType<FeatureExtras, FeatureExtras, FeatureExtras>>;
|
|
3872
4077
|
}, {
|
|
3873
4078
|
readonly json: Furniture;
|
|
3874
4079
|
} & {
|
|
@@ -3881,9 +4086,16 @@ configure(configurationChanges: Partial<ParametricObjectConfiguration>): void;
|
|
|
3881
4086
|
remove(): void;
|
|
3882
4087
|
regenerateId(randomizer: string): void;
|
|
3883
4088
|
setExternal(external: boolean): void;
|
|
3884
|
-
setLayers(layers: string[]): void;
|
|
3885
4089
|
} & {
|
|
3886
4090
|
resizeAndMoveTo(dimensions: Partial<SIObjectDimensions>, position: Partial<SILevelCoord3d>): void;
|
|
4091
|
+
} & {
|
|
4092
|
+
setLayers(layers: string[]): void;
|
|
4093
|
+
} & {
|
|
4094
|
+
setExtras(extras: FeatureExtras | undefined): void;
|
|
4095
|
+
mergeExtras(extras: FeatureExtras): void;
|
|
4096
|
+
setExtrasEntry(key: string, value: JsonValue): void;
|
|
4097
|
+
removeExtrasEntry(key: string): void;
|
|
4098
|
+
renameExtrasKey(oldKey: string, newKey: string): void;
|
|
3887
4099
|
}, _NotCustomized, _NotCustomized>>;
|
|
3888
4100
|
floorplan: IOptionalIType<IModelType< {
|
|
3889
4101
|
url: IMaybe<ISimpleType<string>>;
|
|
@@ -3939,6 +4151,7 @@ removeAllGrounds(): void;
|
|
|
3939
4151
|
newWall(wall?: (Omit<SIWall, "segments"> & {
|
|
3940
4152
|
segments: SOAbstractSegment[] | SOWallSegment[];
|
|
3941
4153
|
}) | undefined): void;
|
|
4154
|
+
addWalls(walls: SIWall[]): void;
|
|
3942
4155
|
removeWall(id: string): void;
|
|
3943
4156
|
removeAllWalls(): void;
|
|
3944
4157
|
newRoof(): void;
|
|
@@ -3963,6 +4176,7 @@ options: JsonWallOptions;
|
|
|
3963
4176
|
layers: string[];
|
|
3964
4177
|
}): void;
|
|
3965
4178
|
clear(): void;
|
|
4179
|
+
removeParkingCluster(clusterId: string): void;
|
|
3966
4180
|
}, _NotCustomized, _NotCustomized>>, [undefined]>;
|
|
3967
4181
|
compassDirection: IMaybe<ISimpleType<number>>;
|
|
3968
4182
|
facade: IMaybe<IModelType< {
|
|
@@ -4255,6 +4469,7 @@ export declare interface SpaceViewerOptions {
|
|
|
4255
4469
|
includeLevels?: number[];
|
|
4256
4470
|
topShownLevel?: number;
|
|
4257
4471
|
onReady?: () => void;
|
|
4472
|
+
onPartialRenderReady?: () => void;
|
|
4258
4473
|
onError?: (errorMessage: string) => void;
|
|
4259
4474
|
onResize?: (containerRect: DOMRect) => void;
|
|
4260
4475
|
onVisibleLevelsChanged?: (visibleLevels: number[]) => void;
|
|
@@ -4262,6 +4477,11 @@ export declare interface SpaceViewerOptions {
|
|
|
4262
4477
|
onModeChange?: (mode: CameraMode) => void;
|
|
4263
4478
|
loadingMessage?: string;
|
|
4264
4479
|
renderingMessage?: string;
|
|
4480
|
+
disableFacadeMode?: boolean;
|
|
4481
|
+
/**
|
|
4482
|
+
* @deprecated Use `disableFacadeMode` instead. This option will be removed in smplr v3.
|
|
4483
|
+
* `true` maps to `disableFacadeMode: false` (facade on). `false` maps to `disableFacadeMode: true` (facade off).
|
|
4484
|
+
*/
|
|
4265
4485
|
experimentalFacadeBasedPerformance?: boolean;
|
|
4266
4486
|
protectScroll?: boolean;
|
|
4267
4487
|
webGpuOptIn?: boolean;
|
|
@@ -4307,7 +4527,10 @@ baseHeight: IMaybe<ISimpleType<number>>;
|
|
|
4307
4527
|
height: IMaybe<ISimpleType<number>>;
|
|
4308
4528
|
style: IOptionalIType<ISimpleType<Style>, [undefined]>;
|
|
4309
4529
|
color: IOptionalIType<ISimpleType<Color_2>, [undefined]>;
|
|
4530
|
+
} & {
|
|
4310
4531
|
layers: IArrayType<ISimpleType<string>>;
|
|
4532
|
+
} & {
|
|
4533
|
+
extras: IMaybe<IType<FeatureExtras, FeatureExtras, FeatureExtras>>;
|
|
4311
4534
|
}, {
|
|
4312
4535
|
readonly json: JsonStair;
|
|
4313
4536
|
} & {
|
|
@@ -4323,7 +4546,14 @@ dt: number;
|
|
|
4323
4546
|
}): void;
|
|
4324
4547
|
remove(): void;
|
|
4325
4548
|
regenerateIds(randomizer: string): void;
|
|
4549
|
+
} & {
|
|
4326
4550
|
setLayers(layers: string[]): void;
|
|
4551
|
+
} & {
|
|
4552
|
+
setExtras(extras: FeatureExtras | undefined): void;
|
|
4553
|
+
mergeExtras(extras: FeatureExtras): void;
|
|
4554
|
+
setExtrasEntry(key: string, value: JsonValue): void;
|
|
4555
|
+
removeExtrasEntry(key: string): void;
|
|
4556
|
+
renameExtrasKey(oldKey: string, newKey: string): void;
|
|
4327
4557
|
}, _NotCustomized, _NotCustomized>;
|
|
4328
4558
|
|
|
4329
4559
|
declare type Style = 'slope' | 'thin' | 'thick' | 'block';
|
|
@@ -4443,7 +4673,7 @@ declare interface Vector3Coord extends Vector2Coord {
|
|
|
4443
4673
|
z: number;
|
|
4444
4674
|
}
|
|
4445
4675
|
|
|
4446
|
-
export declare const version = "2.58.1-beta.
|
|
4676
|
+
export declare const version = "2.58.1-beta.21";
|
|
4447
4677
|
|
|
4448
4678
|
declare interface ViewerDataLayerRenderState<Definition = DataLayer<UnknownData>> {
|
|
4449
4679
|
definition: Definition;
|
|
@@ -4893,6 +5123,7 @@ objectsRendered: boolean;
|
|
|
4893
5123
|
sceneReadySent: boolean;
|
|
4894
5124
|
handledEngineError: boolean;
|
|
4895
5125
|
logoLoaderHidden: boolean;
|
|
5126
|
+
renderLoaderFlag: boolean;
|
|
4896
5127
|
renderDoneTick: number;
|
|
4897
5128
|
sceneEnvironmentTick: number;
|
|
4898
5129
|
objectMeshesTick: number;
|
|
@@ -4917,6 +5148,7 @@ readonly safeTopVisibleLevelIndex: number;
|
|
|
4917
5148
|
readonly sceneReady: boolean;
|
|
4918
5149
|
readonly logoLoaderCanHide: boolean;
|
|
4919
5150
|
readonly sceneEnvironmentReady: boolean;
|
|
5151
|
+
readonly spaceRenderSignature: string;
|
|
4920
5152
|
readonly renderFilter: Filter;
|
|
4921
5153
|
} & {
|
|
4922
5154
|
readonly showRenderLoader: boolean;
|
|
@@ -4994,6 +5226,7 @@ setAssetsManager(assetsManager: AssetsManager | null): void;
|
|
|
4994
5226
|
setFacadeAssetsManager(facadeAssetsManager: AssetsManager | null): void;
|
|
4995
5227
|
setActionManager(actionManager: ActionManager): void;
|
|
4996
5228
|
markRenderDone(phase: RenderPhase): void;
|
|
5229
|
+
setRenderLoaderFlag(v: boolean): void;
|
|
4997
5230
|
resetRenderPhase(phase: RenderPhase): void;
|
|
4998
5231
|
markEngineErrorHandled(): void;
|
|
4999
5232
|
markLogoLoaderHidden(): void;
|
|
@@ -5117,7 +5350,10 @@ setRailingStyle(railingStyle: string): void;
|
|
|
5117
5350
|
} & {
|
|
5118
5351
|
setOpenFrom(openFrom: string): void;
|
|
5119
5352
|
}, _NotCustomized, _NotCustomized>, [undefined]>;
|
|
5353
|
+
} & {
|
|
5120
5354
|
layers: IArrayType<ISimpleType<string>>;
|
|
5355
|
+
} & {
|
|
5356
|
+
extras: IMaybe<IType<FeatureExtras, FeatureExtras, FeatureExtras>>;
|
|
5121
5357
|
}, {
|
|
5122
5358
|
readonly json: JsonWallOpening;
|
|
5123
5359
|
readonly segment: IWallSegment;
|
|
@@ -5138,10 +5374,17 @@ setTargetPanelWidth(targetPanelWidth: number | undefined): void;
|
|
|
5138
5374
|
moveTo(position: SIWallOpeningPosition): void;
|
|
5139
5375
|
moveInDirection(direction: URDL, distance?: number): void;
|
|
5140
5376
|
remove(): void;
|
|
5141
|
-
setLayers(layers: string[]): void;
|
|
5142
5377
|
} & {
|
|
5143
5378
|
expandToFullSegment(): void;
|
|
5144
5379
|
addToAllSegmentsInWall(): void;
|
|
5380
|
+
} & {
|
|
5381
|
+
setLayers(layers: string[]): void;
|
|
5382
|
+
} & {
|
|
5383
|
+
setExtras(extras: FeatureExtras | undefined): void;
|
|
5384
|
+
mergeExtras(extras: FeatureExtras): void;
|
|
5385
|
+
setExtrasEntry(key: string, value: JsonValue): void;
|
|
5386
|
+
removeExtrasEntry(key: string): void;
|
|
5387
|
+
renameExtrasKey(oldKey: string, newKey: string): void;
|
|
5145
5388
|
}, _NotCustomized, _NotCustomized>>;
|
|
5146
5389
|
}, {
|
|
5147
5390
|
readonly superJson: JsonAbstractSegment;
|
|
@@ -5155,7 +5398,10 @@ addOpening(opening: SIWallOpening): void;
|
|
|
5155
5398
|
removeOpening(id: string): void;
|
|
5156
5399
|
regenerateIds(randomizer: string): void;
|
|
5157
5400
|
}, _NotCustomized, _NotCustomized>>;
|
|
5401
|
+
} & {
|
|
5158
5402
|
layers: IArrayType<ISimpleType<string>>;
|
|
5403
|
+
} & {
|
|
5404
|
+
extras: IMaybe<IType<FeatureExtras, FeatureExtras, FeatureExtras>>;
|
|
5159
5405
|
}, {
|
|
5160
5406
|
readonly json: JsonWall;
|
|
5161
5407
|
} & {
|
|
@@ -5167,7 +5413,6 @@ regenerateIds(randomizer: string): void;
|
|
|
5167
5413
|
} & {
|
|
5168
5414
|
rename(name: string): void;
|
|
5169
5415
|
ensureName(): void;
|
|
5170
|
-
setLayers(layers: string[]): void;
|
|
5171
5416
|
splitWallAtPoint({ pointId }: {
|
|
5172
5417
|
pointId: string;
|
|
5173
5418
|
}): void;
|
|
@@ -5183,6 +5428,14 @@ close(): void;
|
|
|
5183
5428
|
removePoint(id: string): void;
|
|
5184
5429
|
} & {
|
|
5185
5430
|
movePoint(id: string, { r, t }: SICanvasPoint): void;
|
|
5431
|
+
} & {
|
|
5432
|
+
setLayers(layers: string[]): void;
|
|
5433
|
+
} & {
|
|
5434
|
+
setExtras(extras: FeatureExtras | undefined): void;
|
|
5435
|
+
mergeExtras(extras: FeatureExtras): void;
|
|
5436
|
+
setExtrasEntry(key: string, value: JsonValue): void;
|
|
5437
|
+
removeExtrasEntry(key: string): void;
|
|
5438
|
+
renameExtrasKey(oldKey: string, newKey: string): void;
|
|
5186
5439
|
}, _NotCustomized, _NotCustomized>;
|
|
5187
5440
|
|
|
5188
5441
|
declare const WallOpening: IModelType< {
|
|
@@ -5238,7 +5491,10 @@ setRailingStyle(railingStyle: string): void;
|
|
|
5238
5491
|
} & {
|
|
5239
5492
|
setOpenFrom(openFrom: string): void;
|
|
5240
5493
|
}, _NotCustomized, _NotCustomized>, [undefined]>;
|
|
5494
|
+
} & {
|
|
5241
5495
|
layers: IArrayType<ISimpleType<string>>;
|
|
5496
|
+
} & {
|
|
5497
|
+
extras: IMaybe<IType<FeatureExtras, FeatureExtras, FeatureExtras>>;
|
|
5242
5498
|
}, {
|
|
5243
5499
|
readonly json: JsonWallOpening;
|
|
5244
5500
|
readonly segment: IWallSegment;
|
|
@@ -5259,10 +5515,17 @@ setTargetPanelWidth(targetPanelWidth: number | undefined): void;
|
|
|
5259
5515
|
moveTo(position: SIWallOpeningPosition): void;
|
|
5260
5516
|
moveInDirection(direction: URDL, distance?: number): void;
|
|
5261
5517
|
remove(): void;
|
|
5262
|
-
setLayers(layers: string[]): void;
|
|
5263
5518
|
} & {
|
|
5264
5519
|
expandToFullSegment(): void;
|
|
5265
5520
|
addToAllSegmentsInWall(): void;
|
|
5521
|
+
} & {
|
|
5522
|
+
setLayers(layers: string[]): void;
|
|
5523
|
+
} & {
|
|
5524
|
+
setExtras(extras: FeatureExtras | undefined): void;
|
|
5525
|
+
mergeExtras(extras: FeatureExtras): void;
|
|
5526
|
+
setExtrasEntry(key: string, value: JsonValue): void;
|
|
5527
|
+
removeExtrasEntry(key: string): void;
|
|
5528
|
+
renameExtrasKey(oldKey: string, newKey: string): void;
|
|
5266
5529
|
}, _NotCustomized, _NotCustomized>;
|
|
5267
5530
|
|
|
5268
5531
|
declare const WallOpeningDimensions: IModelType< {
|
|
@@ -5393,7 +5656,10 @@ setRailingStyle(railingStyle: string): void;
|
|
|
5393
5656
|
} & {
|
|
5394
5657
|
setOpenFrom(openFrom: string): void;
|
|
5395
5658
|
}, _NotCustomized, _NotCustomized>, [undefined]>;
|
|
5659
|
+
} & {
|
|
5396
5660
|
layers: IArrayType<ISimpleType<string>>;
|
|
5661
|
+
} & {
|
|
5662
|
+
extras: IMaybe<IType<FeatureExtras, FeatureExtras, FeatureExtras>>;
|
|
5397
5663
|
}, {
|
|
5398
5664
|
readonly json: JsonWallOpening;
|
|
5399
5665
|
readonly segment: IWallSegment;
|
|
@@ -5414,10 +5680,17 @@ setTargetPanelWidth(targetPanelWidth: number | undefined): void;
|
|
|
5414
5680
|
moveTo(position: SIWallOpeningPosition): void;
|
|
5415
5681
|
moveInDirection(direction: URDL, distance?: number): void;
|
|
5416
5682
|
remove(): void;
|
|
5417
|
-
setLayers(layers: string[]): void;
|
|
5418
5683
|
} & {
|
|
5419
5684
|
expandToFullSegment(): void;
|
|
5420
5685
|
addToAllSegmentsInWall(): void;
|
|
5686
|
+
} & {
|
|
5687
|
+
setLayers(layers: string[]): void;
|
|
5688
|
+
} & {
|
|
5689
|
+
setExtras(extras: FeatureExtras | undefined): void;
|
|
5690
|
+
mergeExtras(extras: FeatureExtras): void;
|
|
5691
|
+
setExtrasEntry(key: string, value: JsonValue): void;
|
|
5692
|
+
removeExtrasEntry(key: string): void;
|
|
5693
|
+
renameExtrasKey(oldKey: string, newKey: string): void;
|
|
5421
5694
|
}, _NotCustomized, _NotCustomized>>;
|
|
5422
5695
|
}, {
|
|
5423
5696
|
readonly superJson: JsonAbstractSegment;
|