@smplrspace/smplr-loader 2.58.1-beta.2 → 2.58.1-beta.20
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 +287 -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>>;
|
|
@@ -2041,7 +2142,7 @@ declare interface Material {
|
|
|
2041
2142
|
}
|
|
2042
2143
|
|
|
2043
2144
|
declare interface MeshSmplrData {
|
|
2044
|
-
type:
|
|
2145
|
+
type: MeshType;
|
|
2045
2146
|
isInstanciated?: boolean;
|
|
2046
2147
|
instances?: Instance_2[] | null;
|
|
2047
2148
|
modelDimensions?: Dimensions;
|
|
@@ -2054,6 +2155,7 @@ declare interface MeshSmplrData {
|
|
|
2054
2155
|
onDropCompute?: string[];
|
|
2055
2156
|
layer?: RenderableDataLayer<DataLayer<UnknownData>>;
|
|
2056
2157
|
partOfFacade?: boolean;
|
|
2158
|
+
interiorPart?: boolean;
|
|
2057
2159
|
annotation?: SOAnnotation;
|
|
2058
2160
|
instance?: PolylineInstance<UnknownData> | IconInstance<UnknownData> | PolygonInstance<UnknownData>;
|
|
2059
2161
|
modelType?: 'gltf' | 'parametric';
|
|
@@ -2069,6 +2171,27 @@ declare interface MeshSmplrData {
|
|
|
2069
2171
|
panelIndex?: number;
|
|
2070
2172
|
}
|
|
2071
2173
|
|
|
2174
|
+
declare enum MeshType {
|
|
2175
|
+
Wall = "wall",
|
|
2176
|
+
Ground = "ground",
|
|
2177
|
+
Window = "window",
|
|
2178
|
+
WindowFrame = "window-frame",
|
|
2179
|
+
Door = "door",
|
|
2180
|
+
DoorFrame = "door-frame",
|
|
2181
|
+
SlidingDoorPanel = "sliding-door-panel",
|
|
2182
|
+
SlidingDoorPanelFrame = "sliding-door-panel-frame",
|
|
2183
|
+
Railing = "railing",
|
|
2184
|
+
Roof = "roof",
|
|
2185
|
+
Stairs = "stairs",
|
|
2186
|
+
Annotation = "annotation",
|
|
2187
|
+
Compass = "compass",
|
|
2188
|
+
Facade = "facade",
|
|
2189
|
+
Floorplan = "floorplan",
|
|
2190
|
+
Object = "object",
|
|
2191
|
+
ObjectPlaceholder = "object-placeholder",
|
|
2192
|
+
DataLayer = "data-layer"
|
|
2193
|
+
}
|
|
2194
|
+
|
|
2072
2195
|
export declare type NoData = Record<string, never>;
|
|
2073
2196
|
|
|
2074
2197
|
declare type NominalDimensionsGetter<C> = (args: {
|
|
@@ -2187,7 +2310,10 @@ height: number;
|
|
|
2187
2310
|
}, _NotCustomized, _NotCustomized>, [undefined]>;
|
|
2188
2311
|
configuration: IMaybe<IType<Partial<ParametricObjectConfiguration>, Partial<ParametricObjectConfiguration>, Partial<ParametricObjectConfiguration>>>;
|
|
2189
2312
|
external: IOptionalIType<ISimpleType<boolean>, [undefined]>;
|
|
2313
|
+
} & {
|
|
2190
2314
|
layers: IArrayType<ISimpleType<string>>;
|
|
2315
|
+
} & {
|
|
2316
|
+
extras: IMaybe<IType<FeatureExtras, FeatureExtras, FeatureExtras>>;
|
|
2191
2317
|
}, {
|
|
2192
2318
|
readonly json: Furniture;
|
|
2193
2319
|
} & {
|
|
@@ -2200,9 +2326,16 @@ configure(configurationChanges: Partial<ParametricObjectConfiguration>): void;
|
|
|
2200
2326
|
remove(): void;
|
|
2201
2327
|
regenerateId(randomizer: string): void;
|
|
2202
2328
|
setExternal(external: boolean): void;
|
|
2203
|
-
setLayers(layers: string[]): void;
|
|
2204
2329
|
} & {
|
|
2205
2330
|
resizeAndMoveTo(dimensions: Partial<SIObjectDimensions>, position: Partial<SILevelCoord3d>): void;
|
|
2331
|
+
} & {
|
|
2332
|
+
setLayers(layers: string[]): void;
|
|
2333
|
+
} & {
|
|
2334
|
+
setExtras(extras: FeatureExtras | undefined): void;
|
|
2335
|
+
mergeExtras(extras: FeatureExtras): void;
|
|
2336
|
+
setExtrasEntry(key: string, value: JsonValue): void;
|
|
2337
|
+
removeExtrasEntry(key: string): void;
|
|
2338
|
+
renameExtrasKey(oldKey: string, newKey: string): void;
|
|
2206
2339
|
}, _NotCustomized, _NotCustomized>;
|
|
2207
2340
|
|
|
2208
2341
|
declare const ObjectDimensions: IModelType< {
|
|
@@ -2246,6 +2379,7 @@ export declare interface Opening {
|
|
|
2246
2379
|
};
|
|
2247
2380
|
options: SOWallOpeningOptions;
|
|
2248
2381
|
coordinates: SmplrCoord3d[];
|
|
2382
|
+
extras?: FeatureExtras;
|
|
2249
2383
|
wallId: string;
|
|
2250
2384
|
}
|
|
2251
2385
|
|
|
@@ -2651,7 +2785,7 @@ export declare class QueryClient {
|
|
|
2651
2785
|
name: string;
|
|
2652
2786
|
created_at: string;
|
|
2653
2787
|
deprecated_id: string;
|
|
2654
|
-
}[]>;
|
|
2788
|
+
}[] | undefined>;
|
|
2655
2789
|
getSpace(spaceId: string, { useCache }?: {
|
|
2656
2790
|
useCache?: boolean | undefined;
|
|
2657
2791
|
}): Promise<{
|
|
@@ -3017,6 +3151,8 @@ readonly centerPoint: SOCanvasPoint;
|
|
|
3017
3151
|
} & {
|
|
3018
3152
|
regenerateIds(randomizer: string): void;
|
|
3019
3153
|
}, _NotCustomized, _NotCustomized>>;
|
|
3154
|
+
} & {
|
|
3155
|
+
extras: IMaybe<IType<FeatureExtras, FeatureExtras, FeatureExtras>>;
|
|
3020
3156
|
}, {
|
|
3021
3157
|
readonly json: JsonRoof;
|
|
3022
3158
|
} & {
|
|
@@ -3040,6 +3176,12 @@ close(): void;
|
|
|
3040
3176
|
removePoint(id: string): void;
|
|
3041
3177
|
} & {
|
|
3042
3178
|
movePoint(id: string, { r, t }: SICanvasPoint): void;
|
|
3179
|
+
} & {
|
|
3180
|
+
setExtras(extras: FeatureExtras | undefined): void;
|
|
3181
|
+
mergeExtras(extras: FeatureExtras): void;
|
|
3182
|
+
setExtrasEntry(key: string, value: JsonValue): void;
|
|
3183
|
+
removeExtrasEntry(key: string): void;
|
|
3184
|
+
renameExtrasKey(oldKey: string, newKey: string): void;
|
|
3043
3185
|
}, _NotCustomized, _NotCustomized>;
|
|
3044
3186
|
|
|
3045
3187
|
declare const RoofOptions: IModelType< {
|
|
@@ -3502,7 +3644,10 @@ removePoint(id: string): void;
|
|
|
3502
3644
|
} & {
|
|
3503
3645
|
movePoint(id: string, { r, t }: SICanvasPoint): void;
|
|
3504
3646
|
}, _NotCustomized, _NotCustomized>>;
|
|
3647
|
+
} & {
|
|
3505
3648
|
layers: IArrayType<ISimpleType<string>>;
|
|
3649
|
+
} & {
|
|
3650
|
+
extras: IMaybe<IType<FeatureExtras, FeatureExtras, FeatureExtras>>;
|
|
3506
3651
|
}, {
|
|
3507
3652
|
readonly json: JsonGround;
|
|
3508
3653
|
} & {
|
|
@@ -3518,7 +3663,6 @@ segments: SOGroundSegment[];
|
|
|
3518
3663
|
}) | undefined): void;
|
|
3519
3664
|
removeHole(holeId: string): void;
|
|
3520
3665
|
replaceSegments(segments: SIGroundSegment[]): void;
|
|
3521
|
-
setLayers(layers: string[]): void;
|
|
3522
3666
|
} & {
|
|
3523
3667
|
readonly points: SOCanvasPoint[];
|
|
3524
3668
|
readonly geometry: SegmentGeometry;
|
|
@@ -3531,6 +3675,14 @@ close(): void;
|
|
|
3531
3675
|
removePoint(id: string): void;
|
|
3532
3676
|
} & {
|
|
3533
3677
|
movePoint(id: string, { r, t }: SICanvasPoint): void;
|
|
3678
|
+
} & {
|
|
3679
|
+
setLayers(layers: string[]): void;
|
|
3680
|
+
} & {
|
|
3681
|
+
setExtras(extras: FeatureExtras | undefined): void;
|
|
3682
|
+
mergeExtras(extras: FeatureExtras): void;
|
|
3683
|
+
setExtrasEntry(key: string, value: JsonValue): void;
|
|
3684
|
+
removeExtrasEntry(key: string): void;
|
|
3685
|
+
renameExtrasKey(oldKey: string, newKey: string): void;
|
|
3534
3686
|
}, _NotCustomized, _NotCustomized>>, [undefined]>;
|
|
3535
3687
|
walls: IOptionalIType<IArrayType<IModelType< {
|
|
3536
3688
|
id: IOptionalIType<ISimpleType<string>, [undefined]>;
|
|
@@ -3629,7 +3781,10 @@ setRailingStyle(railingStyle: string): void;
|
|
|
3629
3781
|
} & {
|
|
3630
3782
|
setOpenFrom(openFrom: string): void;
|
|
3631
3783
|
}, _NotCustomized, _NotCustomized>, [undefined]>;
|
|
3784
|
+
} & {
|
|
3632
3785
|
layers: IArrayType<ISimpleType<string>>;
|
|
3786
|
+
} & {
|
|
3787
|
+
extras: IMaybe<IType<FeatureExtras, FeatureExtras, FeatureExtras>>;
|
|
3633
3788
|
}, {
|
|
3634
3789
|
readonly json: JsonWallOpening;
|
|
3635
3790
|
readonly segment: IWallSegment;
|
|
@@ -3650,10 +3805,17 @@ setTargetPanelWidth(targetPanelWidth: number | undefined): void;
|
|
|
3650
3805
|
moveTo(position: SIWallOpeningPosition): void;
|
|
3651
3806
|
moveInDirection(direction: URDL, distance?: number): void;
|
|
3652
3807
|
remove(): void;
|
|
3653
|
-
setLayers(layers: string[]): void;
|
|
3654
3808
|
} & {
|
|
3655
3809
|
expandToFullSegment(): void;
|
|
3656
3810
|
addToAllSegmentsInWall(): void;
|
|
3811
|
+
} & {
|
|
3812
|
+
setLayers(layers: string[]): void;
|
|
3813
|
+
} & {
|
|
3814
|
+
setExtras(extras: FeatureExtras | undefined): void;
|
|
3815
|
+
mergeExtras(extras: FeatureExtras): void;
|
|
3816
|
+
setExtrasEntry(key: string, value: JsonValue): void;
|
|
3817
|
+
removeExtrasEntry(key: string): void;
|
|
3818
|
+
renameExtrasKey(oldKey: string, newKey: string): void;
|
|
3657
3819
|
}, _NotCustomized, _NotCustomized>>;
|
|
3658
3820
|
}, {
|
|
3659
3821
|
readonly superJson: JsonAbstractSegment;
|
|
@@ -3667,7 +3829,10 @@ addOpening(opening: SIWallOpening): void;
|
|
|
3667
3829
|
removeOpening(id: string): void;
|
|
3668
3830
|
regenerateIds(randomizer: string): void;
|
|
3669
3831
|
}, _NotCustomized, _NotCustomized>>;
|
|
3832
|
+
} & {
|
|
3670
3833
|
layers: IArrayType<ISimpleType<string>>;
|
|
3834
|
+
} & {
|
|
3835
|
+
extras: IMaybe<IType<FeatureExtras, FeatureExtras, FeatureExtras>>;
|
|
3671
3836
|
}, {
|
|
3672
3837
|
readonly json: JsonWall;
|
|
3673
3838
|
} & {
|
|
@@ -3679,7 +3844,6 @@ regenerateIds(randomizer: string): void;
|
|
|
3679
3844
|
} & {
|
|
3680
3845
|
rename(name: string): void;
|
|
3681
3846
|
ensureName(): void;
|
|
3682
|
-
setLayers(layers: string[]): void;
|
|
3683
3847
|
splitWallAtPoint({ pointId }: {
|
|
3684
3848
|
pointId: string;
|
|
3685
3849
|
}): void;
|
|
@@ -3695,6 +3859,14 @@ close(): void;
|
|
|
3695
3859
|
removePoint(id: string): void;
|
|
3696
3860
|
} & {
|
|
3697
3861
|
movePoint(id: string, { r, t }: SICanvasPoint): void;
|
|
3862
|
+
} & {
|
|
3863
|
+
setLayers(layers: string[]): void;
|
|
3864
|
+
} & {
|
|
3865
|
+
setExtras(extras: FeatureExtras | undefined): void;
|
|
3866
|
+
mergeExtras(extras: FeatureExtras): void;
|
|
3867
|
+
setExtrasEntry(key: string, value: JsonValue): void;
|
|
3868
|
+
removeExtrasEntry(key: string): void;
|
|
3869
|
+
renameExtrasKey(oldKey: string, newKey: string): void;
|
|
3698
3870
|
}, _NotCustomized, _NotCustomized>>, [undefined]>;
|
|
3699
3871
|
roofs: IOptionalIType<IArrayType<IModelType< {
|
|
3700
3872
|
id: IOptionalIType<ISimpleType<string>, [undefined]>;
|
|
@@ -3740,6 +3912,8 @@ readonly centerPoint: SOCanvasPoint;
|
|
|
3740
3912
|
} & {
|
|
3741
3913
|
regenerateIds(randomizer: string): void;
|
|
3742
3914
|
}, _NotCustomized, _NotCustomized>>;
|
|
3915
|
+
} & {
|
|
3916
|
+
extras: IMaybe<IType<FeatureExtras, FeatureExtras, FeatureExtras>>;
|
|
3743
3917
|
}, {
|
|
3744
3918
|
readonly json: JsonRoof;
|
|
3745
3919
|
} & {
|
|
@@ -3763,6 +3937,12 @@ close(): void;
|
|
|
3763
3937
|
removePoint(id: string): void;
|
|
3764
3938
|
} & {
|
|
3765
3939
|
movePoint(id: string, { r, t }: SICanvasPoint): void;
|
|
3940
|
+
} & {
|
|
3941
|
+
setExtras(extras: FeatureExtras | undefined): void;
|
|
3942
|
+
mergeExtras(extras: FeatureExtras): void;
|
|
3943
|
+
setExtrasEntry(key: string, value: JsonValue): void;
|
|
3944
|
+
removeExtrasEntry(key: string): void;
|
|
3945
|
+
renameExtrasKey(oldKey: string, newKey: string): void;
|
|
3766
3946
|
}, _NotCustomized, _NotCustomized>>, [undefined]>;
|
|
3767
3947
|
stairs: IArrayType<IModelType< {
|
|
3768
3948
|
id: IOptionalIType<ISimpleType<string>, [undefined]>;
|
|
@@ -3791,7 +3971,10 @@ baseHeight: IMaybe<ISimpleType<number>>;
|
|
|
3791
3971
|
height: IMaybe<ISimpleType<number>>;
|
|
3792
3972
|
style: IOptionalIType<ISimpleType<"slope" | "thin" | "thick" | "block">, [undefined]>;
|
|
3793
3973
|
color: IOptionalIType<ISimpleType<"white" | "grey" | "darkgrey">, [undefined]>;
|
|
3974
|
+
} & {
|
|
3794
3975
|
layers: IArrayType<ISimpleType<string>>;
|
|
3976
|
+
} & {
|
|
3977
|
+
extras: IMaybe<IType<FeatureExtras, FeatureExtras, FeatureExtras>>;
|
|
3795
3978
|
}, {
|
|
3796
3979
|
readonly json: JsonStair;
|
|
3797
3980
|
} & {
|
|
@@ -3807,7 +3990,14 @@ dt: number;
|
|
|
3807
3990
|
}): void;
|
|
3808
3991
|
remove(): void;
|
|
3809
3992
|
regenerateIds(randomizer: string): void;
|
|
3993
|
+
} & {
|
|
3810
3994
|
setLayers(layers: string[]): void;
|
|
3995
|
+
} & {
|
|
3996
|
+
setExtras(extras: FeatureExtras | undefined): void;
|
|
3997
|
+
mergeExtras(extras: FeatureExtras): void;
|
|
3998
|
+
setExtrasEntry(key: string, value: JsonValue): void;
|
|
3999
|
+
removeExtrasEntry(key: string): void;
|
|
4000
|
+
renameExtrasKey(oldKey: string, newKey: string): void;
|
|
3811
4001
|
}, _NotCustomized, _NotCustomized>>;
|
|
3812
4002
|
annotations: IArrayType<IModelType< {
|
|
3813
4003
|
id: IOptionalIType<ISimpleType<string>, [undefined]>;
|
|
@@ -3820,7 +4010,10 @@ size: IMaybe<ISimpleType<number>>;
|
|
|
3820
4010
|
media: IMaybe<ISimpleType<string>>;
|
|
3821
4011
|
is360: IOptionalIType<ISimpleType<boolean>, [undefined]>;
|
|
3822
4012
|
direction: IMaybe<ISimpleType<number>>;
|
|
4013
|
+
} & {
|
|
3823
4014
|
layers: IArrayType<ISimpleType<string>>;
|
|
4015
|
+
} & {
|
|
4016
|
+
extras: IMaybe<IType<FeatureExtras, FeatureExtras, FeatureExtras>>;
|
|
3824
4017
|
}, {
|
|
3825
4018
|
readonly json: JsonAnnotation;
|
|
3826
4019
|
} & {
|
|
@@ -3834,7 +4027,14 @@ setMedia(url: string | undefined): void;
|
|
|
3834
4027
|
setIs360(is360: boolean): void;
|
|
3835
4028
|
setDirection(angle: number | undefined): void;
|
|
3836
4029
|
regenerateId(randomizer: string): void;
|
|
4030
|
+
} & {
|
|
3837
4031
|
setLayers(layers: string[]): void;
|
|
4032
|
+
} & {
|
|
4033
|
+
setExtras(extras: FeatureExtras | undefined): void;
|
|
4034
|
+
mergeExtras(extras: FeatureExtras): void;
|
|
4035
|
+
setExtrasEntry(key: string, value: JsonValue): void;
|
|
4036
|
+
removeExtrasEntry(key: string): void;
|
|
4037
|
+
renameExtrasKey(oldKey: string, newKey: string): void;
|
|
3838
4038
|
}, _NotCustomized, _NotCustomized>>;
|
|
3839
4039
|
objects: IArrayType<IModelType< {
|
|
3840
4040
|
catalogId: ISimpleType<string>;
|
|
@@ -3868,7 +4068,10 @@ height: number;
|
|
|
3868
4068
|
}, _NotCustomized, _NotCustomized>, [undefined]>;
|
|
3869
4069
|
configuration: IMaybe<IType<Partial<ParametricObjectConfiguration>, Partial<ParametricObjectConfiguration>, Partial<ParametricObjectConfiguration>>>;
|
|
3870
4070
|
external: IOptionalIType<ISimpleType<boolean>, [undefined]>;
|
|
4071
|
+
} & {
|
|
3871
4072
|
layers: IArrayType<ISimpleType<string>>;
|
|
4073
|
+
} & {
|
|
4074
|
+
extras: IMaybe<IType<FeatureExtras, FeatureExtras, FeatureExtras>>;
|
|
3872
4075
|
}, {
|
|
3873
4076
|
readonly json: Furniture;
|
|
3874
4077
|
} & {
|
|
@@ -3881,9 +4084,16 @@ configure(configurationChanges: Partial<ParametricObjectConfiguration>): void;
|
|
|
3881
4084
|
remove(): void;
|
|
3882
4085
|
regenerateId(randomizer: string): void;
|
|
3883
4086
|
setExternal(external: boolean): void;
|
|
3884
|
-
setLayers(layers: string[]): void;
|
|
3885
4087
|
} & {
|
|
3886
4088
|
resizeAndMoveTo(dimensions: Partial<SIObjectDimensions>, position: Partial<SILevelCoord3d>): void;
|
|
4089
|
+
} & {
|
|
4090
|
+
setLayers(layers: string[]): void;
|
|
4091
|
+
} & {
|
|
4092
|
+
setExtras(extras: FeatureExtras | undefined): void;
|
|
4093
|
+
mergeExtras(extras: FeatureExtras): void;
|
|
4094
|
+
setExtrasEntry(key: string, value: JsonValue): void;
|
|
4095
|
+
removeExtrasEntry(key: string): void;
|
|
4096
|
+
renameExtrasKey(oldKey: string, newKey: string): void;
|
|
3887
4097
|
}, _NotCustomized, _NotCustomized>>;
|
|
3888
4098
|
floorplan: IOptionalIType<IModelType< {
|
|
3889
4099
|
url: IMaybe<ISimpleType<string>>;
|
|
@@ -4255,6 +4465,7 @@ export declare interface SpaceViewerOptions {
|
|
|
4255
4465
|
includeLevels?: number[];
|
|
4256
4466
|
topShownLevel?: number;
|
|
4257
4467
|
onReady?: () => void;
|
|
4468
|
+
onPartialRenderReady?: () => void;
|
|
4258
4469
|
onError?: (errorMessage: string) => void;
|
|
4259
4470
|
onResize?: (containerRect: DOMRect) => void;
|
|
4260
4471
|
onVisibleLevelsChanged?: (visibleLevels: number[]) => void;
|
|
@@ -4262,6 +4473,11 @@ export declare interface SpaceViewerOptions {
|
|
|
4262
4473
|
onModeChange?: (mode: CameraMode) => void;
|
|
4263
4474
|
loadingMessage?: string;
|
|
4264
4475
|
renderingMessage?: string;
|
|
4476
|
+
disableFacadeMode?: boolean;
|
|
4477
|
+
/**
|
|
4478
|
+
* @deprecated Use `disableFacadeMode` instead. This option will be removed in smplr v3.
|
|
4479
|
+
* `true` maps to `disableFacadeMode: false` (facade on). `false` maps to `disableFacadeMode: true` (facade off).
|
|
4480
|
+
*/
|
|
4265
4481
|
experimentalFacadeBasedPerformance?: boolean;
|
|
4266
4482
|
protectScroll?: boolean;
|
|
4267
4483
|
webGpuOptIn?: boolean;
|
|
@@ -4307,7 +4523,10 @@ baseHeight: IMaybe<ISimpleType<number>>;
|
|
|
4307
4523
|
height: IMaybe<ISimpleType<number>>;
|
|
4308
4524
|
style: IOptionalIType<ISimpleType<Style>, [undefined]>;
|
|
4309
4525
|
color: IOptionalIType<ISimpleType<Color_2>, [undefined]>;
|
|
4526
|
+
} & {
|
|
4310
4527
|
layers: IArrayType<ISimpleType<string>>;
|
|
4528
|
+
} & {
|
|
4529
|
+
extras: IMaybe<IType<FeatureExtras, FeatureExtras, FeatureExtras>>;
|
|
4311
4530
|
}, {
|
|
4312
4531
|
readonly json: JsonStair;
|
|
4313
4532
|
} & {
|
|
@@ -4323,7 +4542,14 @@ dt: number;
|
|
|
4323
4542
|
}): void;
|
|
4324
4543
|
remove(): void;
|
|
4325
4544
|
regenerateIds(randomizer: string): void;
|
|
4545
|
+
} & {
|
|
4326
4546
|
setLayers(layers: string[]): void;
|
|
4547
|
+
} & {
|
|
4548
|
+
setExtras(extras: FeatureExtras | undefined): void;
|
|
4549
|
+
mergeExtras(extras: FeatureExtras): void;
|
|
4550
|
+
setExtrasEntry(key: string, value: JsonValue): void;
|
|
4551
|
+
removeExtrasEntry(key: string): void;
|
|
4552
|
+
renameExtrasKey(oldKey: string, newKey: string): void;
|
|
4327
4553
|
}, _NotCustomized, _NotCustomized>;
|
|
4328
4554
|
|
|
4329
4555
|
declare type Style = 'slope' | 'thin' | 'thick' | 'block';
|
|
@@ -4443,7 +4669,7 @@ declare interface Vector3Coord extends Vector2Coord {
|
|
|
4443
4669
|
z: number;
|
|
4444
4670
|
}
|
|
4445
4671
|
|
|
4446
|
-
export declare const version = "2.58.1-beta.
|
|
4672
|
+
export declare const version = "2.58.1-beta.20";
|
|
4447
4673
|
|
|
4448
4674
|
declare interface ViewerDataLayerRenderState<Definition = DataLayer<UnknownData>> {
|
|
4449
4675
|
definition: Definition;
|
|
@@ -4893,6 +5119,7 @@ objectsRendered: boolean;
|
|
|
4893
5119
|
sceneReadySent: boolean;
|
|
4894
5120
|
handledEngineError: boolean;
|
|
4895
5121
|
logoLoaderHidden: boolean;
|
|
5122
|
+
renderLoaderFlag: boolean;
|
|
4896
5123
|
renderDoneTick: number;
|
|
4897
5124
|
sceneEnvironmentTick: number;
|
|
4898
5125
|
objectMeshesTick: number;
|
|
@@ -4917,6 +5144,7 @@ readonly safeTopVisibleLevelIndex: number;
|
|
|
4917
5144
|
readonly sceneReady: boolean;
|
|
4918
5145
|
readonly logoLoaderCanHide: boolean;
|
|
4919
5146
|
readonly sceneEnvironmentReady: boolean;
|
|
5147
|
+
readonly spaceRenderSignature: string;
|
|
4920
5148
|
readonly renderFilter: Filter;
|
|
4921
5149
|
} & {
|
|
4922
5150
|
readonly showRenderLoader: boolean;
|
|
@@ -4994,6 +5222,7 @@ setAssetsManager(assetsManager: AssetsManager | null): void;
|
|
|
4994
5222
|
setFacadeAssetsManager(facadeAssetsManager: AssetsManager | null): void;
|
|
4995
5223
|
setActionManager(actionManager: ActionManager): void;
|
|
4996
5224
|
markRenderDone(phase: RenderPhase): void;
|
|
5225
|
+
setRenderLoaderFlag(v: boolean): void;
|
|
4997
5226
|
resetRenderPhase(phase: RenderPhase): void;
|
|
4998
5227
|
markEngineErrorHandled(): void;
|
|
4999
5228
|
markLogoLoaderHidden(): void;
|
|
@@ -5117,7 +5346,10 @@ setRailingStyle(railingStyle: string): void;
|
|
|
5117
5346
|
} & {
|
|
5118
5347
|
setOpenFrom(openFrom: string): void;
|
|
5119
5348
|
}, _NotCustomized, _NotCustomized>, [undefined]>;
|
|
5349
|
+
} & {
|
|
5120
5350
|
layers: IArrayType<ISimpleType<string>>;
|
|
5351
|
+
} & {
|
|
5352
|
+
extras: IMaybe<IType<FeatureExtras, FeatureExtras, FeatureExtras>>;
|
|
5121
5353
|
}, {
|
|
5122
5354
|
readonly json: JsonWallOpening;
|
|
5123
5355
|
readonly segment: IWallSegment;
|
|
@@ -5138,10 +5370,17 @@ setTargetPanelWidth(targetPanelWidth: number | undefined): void;
|
|
|
5138
5370
|
moveTo(position: SIWallOpeningPosition): void;
|
|
5139
5371
|
moveInDirection(direction: URDL, distance?: number): void;
|
|
5140
5372
|
remove(): void;
|
|
5141
|
-
setLayers(layers: string[]): void;
|
|
5142
5373
|
} & {
|
|
5143
5374
|
expandToFullSegment(): void;
|
|
5144
5375
|
addToAllSegmentsInWall(): void;
|
|
5376
|
+
} & {
|
|
5377
|
+
setLayers(layers: string[]): void;
|
|
5378
|
+
} & {
|
|
5379
|
+
setExtras(extras: FeatureExtras | undefined): void;
|
|
5380
|
+
mergeExtras(extras: FeatureExtras): void;
|
|
5381
|
+
setExtrasEntry(key: string, value: JsonValue): void;
|
|
5382
|
+
removeExtrasEntry(key: string): void;
|
|
5383
|
+
renameExtrasKey(oldKey: string, newKey: string): void;
|
|
5145
5384
|
}, _NotCustomized, _NotCustomized>>;
|
|
5146
5385
|
}, {
|
|
5147
5386
|
readonly superJson: JsonAbstractSegment;
|
|
@@ -5155,7 +5394,10 @@ addOpening(opening: SIWallOpening): void;
|
|
|
5155
5394
|
removeOpening(id: string): void;
|
|
5156
5395
|
regenerateIds(randomizer: string): void;
|
|
5157
5396
|
}, _NotCustomized, _NotCustomized>>;
|
|
5397
|
+
} & {
|
|
5158
5398
|
layers: IArrayType<ISimpleType<string>>;
|
|
5399
|
+
} & {
|
|
5400
|
+
extras: IMaybe<IType<FeatureExtras, FeatureExtras, FeatureExtras>>;
|
|
5159
5401
|
}, {
|
|
5160
5402
|
readonly json: JsonWall;
|
|
5161
5403
|
} & {
|
|
@@ -5167,7 +5409,6 @@ regenerateIds(randomizer: string): void;
|
|
|
5167
5409
|
} & {
|
|
5168
5410
|
rename(name: string): void;
|
|
5169
5411
|
ensureName(): void;
|
|
5170
|
-
setLayers(layers: string[]): void;
|
|
5171
5412
|
splitWallAtPoint({ pointId }: {
|
|
5172
5413
|
pointId: string;
|
|
5173
5414
|
}): void;
|
|
@@ -5183,6 +5424,14 @@ close(): void;
|
|
|
5183
5424
|
removePoint(id: string): void;
|
|
5184
5425
|
} & {
|
|
5185
5426
|
movePoint(id: string, { r, t }: SICanvasPoint): void;
|
|
5427
|
+
} & {
|
|
5428
|
+
setLayers(layers: string[]): void;
|
|
5429
|
+
} & {
|
|
5430
|
+
setExtras(extras: FeatureExtras | undefined): void;
|
|
5431
|
+
mergeExtras(extras: FeatureExtras): void;
|
|
5432
|
+
setExtrasEntry(key: string, value: JsonValue): void;
|
|
5433
|
+
removeExtrasEntry(key: string): void;
|
|
5434
|
+
renameExtrasKey(oldKey: string, newKey: string): void;
|
|
5186
5435
|
}, _NotCustomized, _NotCustomized>;
|
|
5187
5436
|
|
|
5188
5437
|
declare const WallOpening: IModelType< {
|
|
@@ -5238,7 +5487,10 @@ setRailingStyle(railingStyle: string): void;
|
|
|
5238
5487
|
} & {
|
|
5239
5488
|
setOpenFrom(openFrom: string): void;
|
|
5240
5489
|
}, _NotCustomized, _NotCustomized>, [undefined]>;
|
|
5490
|
+
} & {
|
|
5241
5491
|
layers: IArrayType<ISimpleType<string>>;
|
|
5492
|
+
} & {
|
|
5493
|
+
extras: IMaybe<IType<FeatureExtras, FeatureExtras, FeatureExtras>>;
|
|
5242
5494
|
}, {
|
|
5243
5495
|
readonly json: JsonWallOpening;
|
|
5244
5496
|
readonly segment: IWallSegment;
|
|
@@ -5259,10 +5511,17 @@ setTargetPanelWidth(targetPanelWidth: number | undefined): void;
|
|
|
5259
5511
|
moveTo(position: SIWallOpeningPosition): void;
|
|
5260
5512
|
moveInDirection(direction: URDL, distance?: number): void;
|
|
5261
5513
|
remove(): void;
|
|
5262
|
-
setLayers(layers: string[]): void;
|
|
5263
5514
|
} & {
|
|
5264
5515
|
expandToFullSegment(): void;
|
|
5265
5516
|
addToAllSegmentsInWall(): void;
|
|
5517
|
+
} & {
|
|
5518
|
+
setLayers(layers: string[]): void;
|
|
5519
|
+
} & {
|
|
5520
|
+
setExtras(extras: FeatureExtras | undefined): void;
|
|
5521
|
+
mergeExtras(extras: FeatureExtras): void;
|
|
5522
|
+
setExtrasEntry(key: string, value: JsonValue): void;
|
|
5523
|
+
removeExtrasEntry(key: string): void;
|
|
5524
|
+
renameExtrasKey(oldKey: string, newKey: string): void;
|
|
5266
5525
|
}, _NotCustomized, _NotCustomized>;
|
|
5267
5526
|
|
|
5268
5527
|
declare const WallOpeningDimensions: IModelType< {
|
|
@@ -5393,7 +5652,10 @@ setRailingStyle(railingStyle: string): void;
|
|
|
5393
5652
|
} & {
|
|
5394
5653
|
setOpenFrom(openFrom: string): void;
|
|
5395
5654
|
}, _NotCustomized, _NotCustomized>, [undefined]>;
|
|
5655
|
+
} & {
|
|
5396
5656
|
layers: IArrayType<ISimpleType<string>>;
|
|
5657
|
+
} & {
|
|
5658
|
+
extras: IMaybe<IType<FeatureExtras, FeatureExtras, FeatureExtras>>;
|
|
5397
5659
|
}, {
|
|
5398
5660
|
readonly json: JsonWallOpening;
|
|
5399
5661
|
readonly segment: IWallSegment;
|
|
@@ -5414,10 +5676,17 @@ setTargetPanelWidth(targetPanelWidth: number | undefined): void;
|
|
|
5414
5676
|
moveTo(position: SIWallOpeningPosition): void;
|
|
5415
5677
|
moveInDirection(direction: URDL, distance?: number): void;
|
|
5416
5678
|
remove(): void;
|
|
5417
|
-
setLayers(layers: string[]): void;
|
|
5418
5679
|
} & {
|
|
5419
5680
|
expandToFullSegment(): void;
|
|
5420
5681
|
addToAllSegmentsInWall(): void;
|
|
5682
|
+
} & {
|
|
5683
|
+
setLayers(layers: string[]): void;
|
|
5684
|
+
} & {
|
|
5685
|
+
setExtras(extras: FeatureExtras | undefined): void;
|
|
5686
|
+
mergeExtras(extras: FeatureExtras): void;
|
|
5687
|
+
setExtrasEntry(key: string, value: JsonValue): void;
|
|
5688
|
+
removeExtrasEntry(key: string): void;
|
|
5689
|
+
renameExtrasKey(oldKey: string, newKey: string): void;
|
|
5421
5690
|
}, _NotCustomized, _NotCustomized>>;
|
|
5422
5691
|
}, {
|
|
5423
5692
|
readonly superJson: JsonAbstractSegment;
|