@colijnit/homedecorator 261.20.5 → 261.20.6
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
|
@@ -31,10 +31,10 @@ import { ExternalSource } from '@colijnit/articleapi/build/model/external-source
|
|
|
31
31
|
import { ArticleFullObject } from '@colijnit/articleapi/build/model/article-full-object';
|
|
32
32
|
import { ArticleCategory } from '@colijnit/configuratorapi/build/model/article-category';
|
|
33
33
|
import { ArticleFlat } from '@colijnit/articleapi/build/model/article-flat.bo';
|
|
34
|
-
import { ArticleExtended } from '@colijnit/articleapi/build/model/article-extended.bo';
|
|
35
34
|
import { ExternalSourceArticleAddInterface } from '@colijnit/articleapi/build/interface/external-source-article-add.interface';
|
|
36
35
|
import { CoDomainValue } from '@colijnit/mainapi/build/model/co-domain-value.bo';
|
|
37
36
|
import { ObjectConfiguration } from '@colijnit/ioneconnector/build/model/object-configuration';
|
|
37
|
+
import { ArticleExtended } from '@colijnit/articleapi/build/model/article-extended.bo';
|
|
38
38
|
import { SelectorStructure } from '@colijnit/configuratorapi/build/model/selector-structure.bo';
|
|
39
39
|
import * as i8$2 from '@colijnit/catalog';
|
|
40
40
|
import { CatalogExternalSourcesService, FilterOrder, CatalogService, ExternalSourceViewmodel } from '@colijnit/catalog';
|
|
@@ -697,7 +697,7 @@ declare class HomedecoratorAppEventService {
|
|
|
697
697
|
hideOutline: Subject<void>;
|
|
698
698
|
objectMovingOrRotating: Subject<void>;
|
|
699
699
|
addToCart: Subject<{
|
|
700
|
-
article: string |
|
|
700
|
+
article: string | ArticleFullObject;
|
|
701
701
|
quantity: number;
|
|
702
702
|
}>;
|
|
703
703
|
addExternalSourceToCart: Subject<ExternalSourceArticleAddInterface>;
|
|
@@ -763,6 +763,7 @@ declare class HomedecoratorConnectorAdapterService implements OnDestroy {
|
|
|
763
763
|
getDecosAsync(): Promise<DecoNode[]>;
|
|
764
764
|
getAnswerPrices(): Promise<AnswerPrice[]>;
|
|
765
765
|
getJsonConfiguredArticles(goodId: number, goodType: string, quantity: number, externalSource?: boolean, showLoader?: boolean, instanceId?: string, configuratorStatistics?: ConfiguratorStatisticsEnvironment): Promise<string>;
|
|
766
|
+
prepareArticleForCart(goodId: number, quantity?: number, shouldGetArticleTree?: boolean, showLoader?: boolean, instanceId?: string): Promise<ArticleFullObject | string>;
|
|
766
767
|
setInstanceToConfigure(id: string): Promise<DataServiceResponseData>;
|
|
767
768
|
selectAnswer(answer: Answer, userInput?: string): Promise<DataServiceResponseData>;
|
|
768
769
|
cancelAnswer(getAnswersAndQuestion?: boolean): Promise<DataServiceResponseData>;
|
|
@@ -1217,7 +1218,7 @@ declare class HomedecoratorConnectorService implements OnDestroy {
|
|
|
1217
1218
|
getInternalParameter(param: InternalParam): Promise<string>;
|
|
1218
1219
|
getDefaultLanguage(upId: number): Promise<string>;
|
|
1219
1220
|
googleTranslateEnabled(): Promise<boolean>;
|
|
1220
|
-
|
|
1221
|
+
prepareArticleForCart(goodId: number, quantity: number, externalSource?: boolean, showLoader?: boolean, instanceId?: string): Promise<ArticleFullObject | string>;
|
|
1221
1222
|
setInstance(id: string): Promise<DataServiceResponseData>;
|
|
1222
1223
|
copyInstanceAndSaveOriginalConfiguration(instanceId: string, result: CustomFloorGroupResult): Promise<string>;
|
|
1223
1224
|
copyInstanceAndLoseOriginalConfiguration(instanceId: string, result: CustomFloorGroupResult): Promise<string>;
|
|
@@ -1249,7 +1250,7 @@ declare class HomedecoratorConnectorService implements OnDestroy {
|
|
|
1249
1250
|
private _isAllSelectionPublished;
|
|
1250
1251
|
private _isAnswerPublished;
|
|
1251
1252
|
private _preloadCachedImages;
|
|
1252
|
-
addToCart(goodId: number, goodType: string, quantity: number, instanceId: string, externalSource: boolean): Promise<string>;
|
|
1253
|
+
addToCart(goodId: number, goodType: string, quantity: number, instanceId: string, externalSource: boolean): Promise<ArticleFullObject | string>;
|
|
1253
1254
|
handleAnswersReceived(): void;
|
|
1254
1255
|
getGoogleTranslation(sourceLang: string, targetLang: string, list: string[]): Promise<string>;
|
|
1255
1256
|
private _prepareSelectionsToDisplayImages;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@colijnit/homedecorator",
|
|
3
|
-
"version": "261.20.
|
|
3
|
+
"version": "261.20.6",
|
|
4
4
|
"description": "Homedecorator application based on 261 version of iOne backend",
|
|
5
5
|
"repository": "npm/npm",
|
|
6
6
|
"author": "Colijn IT",
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"@angular/common": ">=20.0.0",
|
|
11
11
|
"@angular/core": ">=20.0.0",
|
|
12
12
|
"@colijnit/catalog": ">=261.20.0",
|
|
13
|
-
"@colijnit/articleapi": ">=261.1.
|
|
13
|
+
"@colijnit/articleapi": ">=261.1.5",
|
|
14
14
|
"@colijnit/configurator": ">=261.20.11",
|
|
15
15
|
"@colijnit/configuratorapi": ">=261.1.6",
|
|
16
16
|
"@colijnit/corecomponents_v12": ">=261.20.0",
|