@colijnit/configurator 262.1.7 → 262.1.9
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
|
@@ -10,6 +10,7 @@ import { Answer } from '@colijnit/configuratorapi/build/model/answer';
|
|
|
10
10
|
import { Article } from '@colijnit/configuratorapi/build/model/article';
|
|
11
11
|
import { SelectorWithOptions } from '@colijnit/configuratorapi/build/model/selector-with-options';
|
|
12
12
|
import { GetArticlesForCatalogRequest } from '@colijnit/configuratorapi/build/model/get-articles-for-catalog';
|
|
13
|
+
import { Options } from '@colijnit/ioneconnector/build/model/options';
|
|
13
14
|
import { SelectorStructure } from '@colijnit/configuratorapi/build/model/selector-structure.bo';
|
|
14
15
|
import { DataServiceResponseData } from '@colijnit/ioneconnector/build/model/data-service-response-data';
|
|
15
16
|
import { QuestionAndAnswers } from '@colijnit/configuratorapi/build/model/question-and-answers';
|
|
@@ -270,20 +271,10 @@ declare class SceneSettings {
|
|
|
270
271
|
scenes: SceneSetting[];
|
|
271
272
|
}
|
|
272
273
|
|
|
273
|
-
declare class ConfiguratorSettings {
|
|
274
|
-
url?: string;
|
|
275
|
-
schema?: string;
|
|
276
|
-
version?: string;
|
|
277
|
-
branch?: string;
|
|
274
|
+
declare class ConfiguratorSettings extends Options {
|
|
278
275
|
currency?: number;
|
|
279
276
|
currencySymbol?: string;
|
|
280
|
-
username?: string;
|
|
281
|
-
password?: string;
|
|
282
277
|
session?: any;
|
|
283
|
-
useGroups?: boolean;
|
|
284
|
-
useRenders?: boolean;
|
|
285
|
-
useLoginEncryption?: boolean;
|
|
286
|
-
logoutWhenRefresh?: boolean;
|
|
287
278
|
useMatch?: boolean;
|
|
288
279
|
assetPath?: string;
|
|
289
280
|
threeDAssetPath?: string;
|
|
@@ -292,10 +283,7 @@ declare class ConfiguratorSettings {
|
|
|
292
283
|
additionalTranslationFile?: string;
|
|
293
284
|
apiUrl?: string;
|
|
294
285
|
client?: string;
|
|
295
|
-
timeoutInMs?: number;
|
|
296
|
-
languageCode?: string;
|
|
297
286
|
secondaryLogo?: string;
|
|
298
|
-
jwtEnabled?: boolean;
|
|
299
287
|
gtm?: string;
|
|
300
288
|
dracoPath?: string;
|
|
301
289
|
mainUrl?: string;
|
|
@@ -366,6 +354,8 @@ declare class ConfiguratorConnectorService implements OnDestroy {
|
|
|
366
354
|
set selectionWithAnswers(value: SelectorWithOptions[]);
|
|
367
355
|
get selectionWithAnswers(): SelectorWithOptions[];
|
|
368
356
|
get shouldShowLoader(): boolean;
|
|
357
|
+
set instanceId(instanceId: string);
|
|
358
|
+
get instanceId(): string;
|
|
369
359
|
controllerInitialized: BehaviorSubject<boolean>;
|
|
370
360
|
standAloneInstance: BehaviorSubject<boolean>;
|
|
371
361
|
connectionReset: Subject<void>;
|
|
@@ -391,6 +381,7 @@ declare class ConfiguratorConnectorService implements OnDestroy {
|
|
|
391
381
|
private _initialized;
|
|
392
382
|
private _boFactory;
|
|
393
383
|
private _configuratorService;
|
|
384
|
+
private _instanceId;
|
|
394
385
|
constructor(_appEventService: ConfiguratorEventService, _settingsService: ConfiguratorSettingsService, _loaderService: LoaderService, _utilitiesConnectorService: UtilitiesConnectorService);
|
|
395
386
|
ngOnDestroy(): void;
|
|
396
387
|
cleanUp(): void;
|
|
@@ -433,7 +424,7 @@ declare class ConfiguratorConnectorService implements OnDestroy {
|
|
|
433
424
|
getInternalParameter(parameter: InternalParam): Promise<string>;
|
|
434
425
|
emptySelections(): void;
|
|
435
426
|
saveConfigurations(): Promise<void>;
|
|
436
|
-
storePreset(
|
|
427
|
+
storePreset(showLoader?: boolean): Promise<DataServiceResponseData>;
|
|
437
428
|
initForPreset(presetId: string, goodId: number, showLoader?: boolean): Promise<DataServiceResponseData>;
|
|
438
429
|
getImageForAnswer(selectedOption: SelectorStructure, showLoader?: boolean): Promise<void>;
|
|
439
430
|
addToCart(goodId: number, goodType: string, quantity: number, instanceId: string, externalSource: boolean): Promise<string>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@colijnit/configurator",
|
|
3
|
-
"version": "262.1.
|
|
3
|
+
"version": "262.1.9",
|
|
4
4
|
"description": "iOne configurator specific for version 262",
|
|
5
5
|
"private": false,
|
|
6
6
|
"peerDependencies": {
|
|
@@ -11,22 +11,22 @@
|
|
|
11
11
|
"@colijnit/articleapi": ">=262.1.0",
|
|
12
12
|
"@colijnit/configuratorapi": ">=262.1.2",
|
|
13
13
|
"@colijnit/corecomponents_v12": ">=262.1.0",
|
|
14
|
-
"@colijnit/ioneconnector": ">=262.1.
|
|
14
|
+
"@colijnit/ioneconnector": ">=262.1.3",
|
|
15
15
|
"@colijnit/mainapi": ">=262.1.1",
|
|
16
|
-
"@colijnit/utilities": ">=262.1.0"
|
|
16
|
+
"@colijnit/utilities": ">=262.1.0",
|
|
17
|
+
"@types/three": "0.178.1",
|
|
18
|
+
"three": "0.178.0",
|
|
19
|
+
"three-bvh-csg": "0.0.17",
|
|
20
|
+
"three-gpu-pathtracer": "0.0.22",
|
|
21
|
+
"three-mesh-bvh": "^0.9.9"
|
|
17
22
|
},
|
|
18
23
|
"dependencies": {
|
|
19
|
-
"@colijnit/configuratorcore": "262.1.
|
|
24
|
+
"@colijnit/configuratorcore": "262.1.2",
|
|
20
25
|
"@tweenjs/tween.js": "25.0.0",
|
|
21
|
-
"@types/three": "0.178.1",
|
|
22
26
|
"jszip": "3.6.0",
|
|
23
27
|
"md5": "^2.3.0",
|
|
24
28
|
"n8ao": "^1.10.1",
|
|
25
29
|
"ngx-device-detector": "^10.1.0",
|
|
26
|
-
"three": "0.178.0",
|
|
27
|
-
"three-bvh-csg": "0.0.17",
|
|
28
|
-
"three-gpu-pathtracer": "0.0.22",
|
|
29
|
-
"three-mesh-bvh": "^0.9.9",
|
|
30
30
|
"tslib": "^2.3.0"
|
|
31
31
|
},
|
|
32
32
|
"module": "fesm2022/colijnit-configurator.mjs",
|