@colijnit/homedecorator 261.20.3 → 261.20.4
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
|
@@ -316,6 +316,9 @@ interface HomedecoratorExternalSettingsInterface {
|
|
|
316
316
|
catalogDefinition: CatalogDefinition;
|
|
317
317
|
externalSourceId: number;
|
|
318
318
|
schema: string;
|
|
319
|
+
mainUrl?: string;
|
|
320
|
+
mainSchema?: string;
|
|
321
|
+
mainVersion?: string;
|
|
319
322
|
}
|
|
320
323
|
|
|
321
324
|
declare class ViewModeService {
|
|
@@ -778,6 +781,7 @@ declare class HomedecoratorConnectorAdapterService implements OnDestroy {
|
|
|
778
781
|
getInternalParameter(parameter: InternalParam): Promise<string>;
|
|
779
782
|
googleTranslateEnabled(): Promise<boolean>;
|
|
780
783
|
getDefaultLanguage(upId: number): Promise<string>;
|
|
784
|
+
getPublicParams(url: string, upId: number): Promise<any>;
|
|
781
785
|
store3DModelCDN(filename: string, fileContents: string): Promise<string>;
|
|
782
786
|
getCatalogDefinitionsList(): Promise<CatalogDefinition[]>;
|
|
783
787
|
getExternalSource(externalSourceId: number): Promise<ExternalSource>;
|
|
@@ -790,6 +794,7 @@ declare class HomedecoratorConnectorAdapterService implements OnDestroy {
|
|
|
790
794
|
saveExternalSources(): void;
|
|
791
795
|
resetExternalSources(): void;
|
|
792
796
|
prepareExternalSources(): Promise<void>;
|
|
797
|
+
getCatalogDefinition(id: number): CatalogDefinition;
|
|
793
798
|
getArticleExtended(articleNumber: string): Promise<ArticleExtended>;
|
|
794
799
|
getGoogleTranslation(sourceLang: string, targetLang: string, list: string[]): Promise<string>;
|
|
795
800
|
private _getPublicationCodeForRole;
|
|
@@ -4258,6 +4263,7 @@ declare class BluePrintService extends BluePrintFloorplanService {
|
|
|
4258
4263
|
bluePrint: BluePrint;
|
|
4259
4264
|
bluePrintUpdated: Subject<BluePrint>;
|
|
4260
4265
|
loadFloorplan(floorplan: BluePrintFloorplan, version: number): Promise<void>;
|
|
4266
|
+
getRoomCenter(): Vector3;
|
|
4261
4267
|
static ɵfac: i0.ɵɵFactoryDeclaration<BluePrintService, never>;
|
|
4262
4268
|
static ɵprov: i0.ɵɵInjectableDeclaration<BluePrintService>;
|
|
4263
4269
|
}
|
|
@@ -8253,7 +8259,6 @@ declare class ThreedselectorComponent implements OnInit, OnDestroy {
|
|
|
8253
8259
|
private _standaloneFloors;
|
|
8254
8260
|
private _subs;
|
|
8255
8261
|
private _loadingFromPreset;
|
|
8256
|
-
private _callBackFnWhenBuildFinished;
|
|
8257
8262
|
private _startPosition;
|
|
8258
8263
|
private _externalSourceData;
|
|
8259
8264
|
private _loadedFromPreset;
|
|
@@ -8268,6 +8273,7 @@ declare class ThreedselectorComponent implements OnInit, OnDestroy {
|
|
|
8268
8273
|
floorplan: any;
|
|
8269
8274
|
}): Promise<any>;
|
|
8270
8275
|
getObjects(): any;
|
|
8276
|
+
saveObjects(): Promise<void>;
|
|
8271
8277
|
objectSelected(object: Item | ItemGroup): void;
|
|
8272
8278
|
handleCustomizeClick(): void;
|
|
8273
8279
|
swapElement(): void;
|
|
@@ -8282,6 +8288,7 @@ declare class ThreedselectorComponent implements OnInit, OnDestroy {
|
|
|
8282
8288
|
loadFurnitureFromSku(position: Vector3, sku: string, settings?: HomedecoratorExternalSettingsInterface): Promise<CustomFloorGroupResult>;
|
|
8283
8289
|
configureFurniture(object: Item | ItemGroup): Promise<void>;
|
|
8284
8290
|
private _initConfigurator;
|
|
8291
|
+
private _prepareSettings;
|
|
8285
8292
|
private _resetConfigurator;
|
|
8286
8293
|
private _waitForBuildToFinish;
|
|
8287
8294
|
private _setSourceSettings;
|
|
@@ -8320,6 +8327,7 @@ declare class ThreedselectorComponent implements OnInit, OnDestroy {
|
|
|
8320
8327
|
private _repositionButton;
|
|
8321
8328
|
private _getOptionsFromSelection;
|
|
8322
8329
|
private _handleAnswerCountReceived;
|
|
8330
|
+
private _addUploadedItem;
|
|
8323
8331
|
private _handleLoadIOneFurnitureIntoSceneBySKU;
|
|
8324
8332
|
private _handleCopyIOneFurnitureIntoSceneBySKU;
|
|
8325
8333
|
private _loadIOneFurnitureFromOriginal;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@colijnit/homedecorator",
|
|
3
|
-
"version": "261.20.
|
|
3
|
+
"version": "261.20.4",
|
|
4
4
|
"description": "Homedecorator application based on 261 version of iOne backend",
|
|
5
5
|
"repository": "npm/npm",
|
|
6
6
|
"author": "Colijn IT",
|
|
@@ -11,13 +11,17 @@
|
|
|
11
11
|
"@angular/core": ">=20.0.0",
|
|
12
12
|
"@colijnit/catalog": ">=261.20.0",
|
|
13
13
|
"@colijnit/articleapi": ">=261.1.0",
|
|
14
|
-
"@colijnit/configurator": ">=261.20.
|
|
15
|
-
"@colijnit/configuratorapi": ">=261.1.
|
|
14
|
+
"@colijnit/configurator": ">=261.20.11",
|
|
15
|
+
"@colijnit/configuratorapi": ">=261.1.6",
|
|
16
16
|
"@colijnit/corecomponents_v12": ">=261.20.0",
|
|
17
17
|
"@colijnit/ioneconnector": ">=261.1.3",
|
|
18
18
|
"@colijnit/mainapi": ">=261.1.0",
|
|
19
19
|
"@colijnit/relationapi": ">=261.1.0",
|
|
20
|
-
"@colijnit/transactionapi": ">=261.1.0"
|
|
20
|
+
"@colijnit/transactionapi": ">=261.1.0",
|
|
21
|
+
"three": "^0.178.0",
|
|
22
|
+
"three-bvh-csg": "0.0.17",
|
|
23
|
+
"three-gpu-pathtracer": "0.0.22",
|
|
24
|
+
"three-mesh-bvh": "^0.9.9"
|
|
21
25
|
},
|
|
22
26
|
"dependencies": {
|
|
23
27
|
"@tweenjs/tween.js": "^25.0.0",
|
|
@@ -34,10 +38,6 @@
|
|
|
34
38
|
"polygon-tools": "^0.4.8",
|
|
35
39
|
"postprocessing": "^6.36.1",
|
|
36
40
|
"textdiff-patch": "^1.0.5",
|
|
37
|
-
"three": "^0.178.0",
|
|
38
|
-
"three-bvh-csg": "0.0.17",
|
|
39
|
-
"three-gpu-pathtracer": "0.0.22",
|
|
40
|
-
"three-mesh-bvh": "^0.9.9",
|
|
41
41
|
"tslib": "^2.3.0"
|
|
42
42
|
},
|
|
43
43
|
"module": "fesm2022/colijnit-homedecorator.mjs",
|