@colijnit/configurator 262.1.0 → 262.1.2
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
|
@@ -282,6 +282,9 @@ declare class ConfiguratorSettings {
|
|
|
282
282
|
jwtEnabled?: boolean;
|
|
283
283
|
gtm?: string;
|
|
284
284
|
dracoPath?: string;
|
|
285
|
+
mainUrl?: string;
|
|
286
|
+
mainSchema?: string;
|
|
287
|
+
mainVersion?: string;
|
|
285
288
|
options?: SettingOptions;
|
|
286
289
|
catalogParameters?: GetArticlesForCatalogRequest;
|
|
287
290
|
renderParameters?: RenderParameters;
|
|
@@ -422,7 +425,7 @@ declare class ConfiguratorService {
|
|
|
422
425
|
constructor();
|
|
423
426
|
initApi(options: Options): void;
|
|
424
427
|
cleanUp(): void;
|
|
425
|
-
initConnector(options: Options, forceReload?: boolean): Promise<boolean>;
|
|
428
|
+
initConnector(options: Options, forceReload?: boolean, mainUrl?: string, mainSchema?: string, mainVersion?: string): Promise<boolean>;
|
|
426
429
|
initNodeInstance(goodId: number, showLoader: boolean): Promise<DataServiceResponseData>;
|
|
427
430
|
changeConnection(instanceId: string, oldConnection: string, newConnection: string, showLoader: boolean): Promise<DataServiceResponseData>;
|
|
428
431
|
setInstanceToConfigure(id: string, showLoader?: boolean): Promise<DataServiceResponseData>;
|
|
@@ -508,7 +511,7 @@ declare class ConfiguratorConnectorService implements OnDestroy {
|
|
|
508
511
|
private _boFactory;
|
|
509
512
|
constructor(_configuratorService: ConfiguratorService, _appEventService: AppEventService, _settingsService: SettingsService, _loaderService: LoaderService);
|
|
510
513
|
ngOnDestroy(): void;
|
|
511
|
-
initConnection(forceReload?: boolean,
|
|
514
|
+
initConnection(forceReload?: boolean, mainUrl?: string, mainSchema?: string, mainVersion?: string): Promise<void>;
|
|
512
515
|
onShowLoaderChange(showLoader: boolean): void;
|
|
513
516
|
onConnectionReset(): void;
|
|
514
517
|
getGoodIdFromSku(sku: string, showLoader?: boolean): Promise<number>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@colijnit/configurator",
|
|
3
|
-
"version": "262.1.
|
|
4
|
-
"description": "iOne configurator specific for version
|
|
3
|
+
"version": "262.1.2",
|
|
4
|
+
"description": "iOne configurator specific for version 262",
|
|
5
5
|
"private": false,
|
|
6
6
|
"peerDependencies": {
|
|
7
7
|
"@angular/common": ">=20.0.0",
|