@colijnit/homedecorator 256.1.5 → 256.1.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/app/core/interface/homedecorator-external-settings.interface.d.ts +1 -2
- package/app/core/service/homedecorator-connector-adapter.service.d.ts +4 -0
- package/assets/hdri/ground_MASK.jpg +0 -0
- package/bundles/colijnit-homedecorator.umd.js +328 -170
- package/bundles/colijnit-homedecorator.umd.js.map +1 -1
- package/esm2015/app/core/interface/homedecorator-external-settings.interface.js +1 -1
- package/esm2015/app/core/service/homedecorator-connector-adapter.service.js +253 -122
- package/esm2015/app/core/service/homedecorator-connector.service.js +2 -1
- package/esm2015/app/plugins/product-catalog/product-catalog/product-catalog.component.js +2 -2
- package/esm2015/app/plugins/room-planner/room-planner/room-planner.component.js +4 -4
- package/esm2015/app/plugins/threedselector/threedselector/service/load-furniture.service.js +2 -2
- package/esm2015/app/plugins/threedselector/threedselector/threedselector.component.js +16 -28
- package/fesm2015/colijnit-homedecorator.js +273 -153
- package/fesm2015/colijnit-homedecorator.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
import { CatalogDefinition } from '@colijnit/articleapi/build/model/catalog-definition.bo';
|
|
2
|
-
import { ExternalSource } from '@colijnit/articleapi/build/model/external-source.bo';
|
|
3
2
|
export interface HomedecoratorExternalSettingsInterface {
|
|
4
3
|
name: string;
|
|
5
4
|
settings: any;
|
|
6
5
|
catalogDefinition: CatalogDefinition;
|
|
7
|
-
|
|
6
|
+
externalSourceId: number;
|
|
8
7
|
schema: string;
|
|
9
8
|
}
|
|
@@ -48,6 +48,8 @@ export declare class HomedecoratorConnectorAdapterService {
|
|
|
48
48
|
connectors: ExternalConnector;
|
|
49
49
|
externalSource: string;
|
|
50
50
|
loginResponse: LoginResponse;
|
|
51
|
+
private _catalogDefinitions;
|
|
52
|
+
private _externalSources;
|
|
51
53
|
private _connector?;
|
|
52
54
|
private _articleApi;
|
|
53
55
|
private _mainApi;
|
|
@@ -88,6 +90,8 @@ export declare class HomedecoratorConnectorAdapterService {
|
|
|
88
90
|
getArticleFlat(sku: string): Promise<ArticleFlat>;
|
|
89
91
|
getModelPlacementOptions(): Promise<CoDomainValue[]>;
|
|
90
92
|
getObjectConfiguration(screenCfgModule: string, params?: string | string[], insertMode?: boolean): Promise<ObjectConfiguration[]>;
|
|
93
|
+
getExternalSourceFromId(id: number): ExternalSource;
|
|
94
|
+
prepareExternalSources(): Promise<void>;
|
|
91
95
|
private _getPublicationCodeForRole;
|
|
92
96
|
static ɵfac: i0.ɵɵFactoryDeclaration<HomedecoratorConnectorAdapterService, never>;
|
|
93
97
|
static ɵprov: i0.ɵɵInjectableDeclaration<HomedecoratorConnectorAdapterService>;
|
|
Binary file
|