@colijnit/homedecorator 258.1.2 → 258.1.3
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/app/core/service/homedecorator-connector-adapter.service.d.ts +3 -1
- package/bundles/colijnit-homedecorator.umd.js +109 -96
- package/bundles/colijnit-homedecorator.umd.js.map +1 -1
- package/esm2015/app/core/service/homedecorator-connector-adapter.service.js +7 -4
- package/esm2015/app/core/service/homedecorator-connector.service.js +8 -4
- package/esm2015/app/plugins/core3d/service/light-presets.service.js +4 -1
- package/esm2015/app/plugins/core3d/service/post-processing.service.js +7 -3
- package/esm2015/app/plugins/product-catalog/own-collection-catalog/product-own-collection.component.js +2 -4
- package/esm2015/app/plugins/product-catalog/product-catalog/product-catalog.component.js +1 -1
- package/fesm2015/colijnit-homedecorator.js +51 -40
- package/fesm2015/colijnit-homedecorator.js.map +1 -1
- package/package.json +2 -2
|
@@ -30,6 +30,7 @@ import { ArticleExtended } from '@colijnit/articleapi/build/model/article-extend
|
|
|
30
30
|
import { Metadata } from '../../plugins/core3d/items/metadata';
|
|
31
31
|
import { HomedecoratorSettings } from '../model/homedecorator-settings';
|
|
32
32
|
import { SelectorStructure } from '@colijnit/configuratorapi/build/model/selector-structure.bo';
|
|
33
|
+
import { CatalogExternalSourcesService } from '@colijnit/catalog';
|
|
33
34
|
import * as i0 from "@angular/core";
|
|
34
35
|
export declare class ExternalConnector {
|
|
35
36
|
loginResponse: LoginResponse;
|
|
@@ -42,6 +43,7 @@ export interface Connector {
|
|
|
42
43
|
}
|
|
43
44
|
export declare class HomedecoratorConnectorAdapterService {
|
|
44
45
|
private _appEventService;
|
|
46
|
+
private _catalogExternalSourcesService;
|
|
45
47
|
readonly questionReceived: Subject<Question>;
|
|
46
48
|
readonly showLoader: Subject<boolean>;
|
|
47
49
|
readonly connectionReset: Subject<void>;
|
|
@@ -63,7 +65,7 @@ export declare class HomedecoratorConnectorAdapterService {
|
|
|
63
65
|
private _articleApi;
|
|
64
66
|
private _mainApi;
|
|
65
67
|
private _boFactory;
|
|
66
|
-
constructor(_appEventService: HomedecoratorAppEventService);
|
|
68
|
+
constructor(_appEventService: HomedecoratorAppEventService, _catalogExternalSourcesService: CatalogExternalSourcesService);
|
|
67
69
|
initConnectionFromMetadata(metadata: Metadata, settings: HomedecoratorSettings): Promise<void>;
|
|
68
70
|
initConnector(options: Options, externalSource?: string, forceReload?: boolean, externalSourceId?: number): Promise<void>;
|
|
69
71
|
logOut(): Promise<void>;
|