fabrikantencore 2.7.4 → 2.7.5
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/esm2022/src/app/modules/fabrikantencore/services/fabrikanten.service.mjs +17 -2
- package/esm2022/src/app/modules/fabrikantencore/swagger/SwaggerClient.mjs +136 -51
- package/fesm2022/fabrikantencore.mjs +151 -51
- package/fesm2022/fabrikantencore.mjs.map +1 -1
- package/package.json +1 -1
- package/src/app/modules/fabrikantencore/services/fabrikanten.service.d.ts +1 -0
- package/src/app/modules/fabrikantencore/swagger/SwaggerClient.d.ts +44 -26
package/package.json
CHANGED
|
@@ -50,6 +50,7 @@ export declare class FabrikantenService {
|
|
|
50
50
|
ResetAllFilters(ChangeDetectorRef: ChangeDetectorRef): void;
|
|
51
51
|
SelectOption(filterid: number, filteroptionid: number, ChangeDetectorRef: ChangeDetectorRef, ActivatedRoute?: ActivatedRoute): void;
|
|
52
52
|
SelectColour(filterid: number, colour: string, colourvalue: string, ChangeDetectorRef: ChangeDetectorRef): void;
|
|
53
|
+
SelectFilterCustom(filterid: number, customvalue: string, ChangeDetectorRef: ChangeDetectorRef): void;
|
|
53
54
|
SetRangeInput(rangeinputid: number, value: number, ChangeDetectorRef: ChangeDetectorRef): void;
|
|
54
55
|
ForceSelectCategory(categoryid: number, ChangeDetectorRef: ChangeDetectorRef): void;
|
|
55
56
|
SelectCategory(category: FabrikantenCategoryViewModel, ChangeDetectorRef: ChangeDetectorRef, ActivatedRoute?: ActivatedRoute): void;
|
|
@@ -62,14 +62,16 @@ export declare class FabrikantenApiClient {
|
|
|
62
62
|
protected processSelectFilterOption(response: HttpResponseBase): Observable<void>;
|
|
63
63
|
selectBCBProduct(pSelectBCBProductRequest: SelectBCBProductRequest): Observable<void>;
|
|
64
64
|
protected processSelectBCBProduct(response: HttpResponseBase): Observable<void>;
|
|
65
|
-
selectProduct(pSelectProductRequest: SelectProductRequest): Observable<void>;
|
|
66
|
-
protected processSelectProduct(response: HttpResponseBase): Observable<void>;
|
|
67
|
-
removeProductSelection(pRemoveProductSelectionRequest: RemoveProductSelectionRequest): Observable<void>;
|
|
68
|
-
protected processRemoveProductSelection(response: HttpResponseBase): Observable<void>;
|
|
69
65
|
selectCategory(pSelectCategoryRequest: SelectCategoryRequest): Observable<void>;
|
|
70
66
|
protected processSelectCategory(response: HttpResponseBase): Observable<void>;
|
|
71
67
|
selectColour(pSelectColourRequest: SelectColourRequest): Observable<void>;
|
|
72
68
|
protected processSelectColour(response: HttpResponseBase): Observable<void>;
|
|
69
|
+
selectFilterCustom(pSelectFilterCustomRequest: SelectFilterCustomRequest): Observable<void>;
|
|
70
|
+
protected processSelectFilterCustom(response: HttpResponseBase): Observable<void>;
|
|
71
|
+
selectProduct(pSelectProductRequest: SelectProductRequest): Observable<void>;
|
|
72
|
+
protected processSelectProduct(response: HttpResponseBase): Observable<void>;
|
|
73
|
+
removeProductSelection(pRemoveProductSelectionRequest: RemoveProductSelectionRequest): Observable<void>;
|
|
74
|
+
protected processRemoveProductSelection(response: HttpResponseBase): Observable<void>;
|
|
73
75
|
resetFilterSelection(pResetFilterRequest: ResetFilterRequest): Observable<void>;
|
|
74
76
|
protected processResetFilterSelection(response: HttpResponseBase): Observable<void>;
|
|
75
77
|
resetCategoryLayerSelection(pResetCategoryLayerRequest: ResetCategoryLayerRequest): Observable<void>;
|
|
@@ -911,6 +913,7 @@ export declare class FabrikantenFilterViewModel implements IFabrikantenFilterVie
|
|
|
911
913
|
selectedOptions?: number[] | undefined;
|
|
912
914
|
selectedColour?: string | undefined;
|
|
913
915
|
selectedColourValue?: string | undefined;
|
|
916
|
+
selectedFilterCustom?: string | undefined;
|
|
914
917
|
options?: FabrikantenFilterOptionViewModel[] | undefined;
|
|
915
918
|
descriptions?: FabrikantenFilterDescriptionViewModel[] | undefined;
|
|
916
919
|
constructor(data?: IFabrikantenFilterViewModel);
|
|
@@ -934,6 +937,7 @@ export interface IFabrikantenFilterViewModel {
|
|
|
934
937
|
selectedOptions?: number[] | undefined;
|
|
935
938
|
selectedColour?: string | undefined;
|
|
936
939
|
selectedColourValue?: string | undefined;
|
|
940
|
+
selectedFilterCustom?: string | undefined;
|
|
937
941
|
options?: FabrikantenFilterOptionViewModel[] | undefined;
|
|
938
942
|
descriptions?: FabrikantenFilterDescriptionViewModel[] | undefined;
|
|
939
943
|
}
|
|
@@ -1442,28 +1446,6 @@ export interface ISelectBCBProductRequest {
|
|
|
1442
1446
|
sessionId?: string | undefined;
|
|
1443
1447
|
bcbProductId: number;
|
|
1444
1448
|
}
|
|
1445
|
-
export declare class SelectProductRequest implements ISelectProductRequest {
|
|
1446
|
-
sessionId?: string | undefined;
|
|
1447
|
-
productId: number;
|
|
1448
|
-
constructor(data?: ISelectProductRequest);
|
|
1449
|
-
init(_data?: any): void;
|
|
1450
|
-
static fromJS(data: any): SelectProductRequest;
|
|
1451
|
-
toJSON(data?: any): any;
|
|
1452
|
-
}
|
|
1453
|
-
export interface ISelectProductRequest {
|
|
1454
|
-
sessionId?: string | undefined;
|
|
1455
|
-
productId: number;
|
|
1456
|
-
}
|
|
1457
|
-
export declare class RemoveProductSelectionRequest implements IRemoveProductSelectionRequest {
|
|
1458
|
-
sessionId?: string | undefined;
|
|
1459
|
-
constructor(data?: IRemoveProductSelectionRequest);
|
|
1460
|
-
init(_data?: any): void;
|
|
1461
|
-
static fromJS(data: any): RemoveProductSelectionRequest;
|
|
1462
|
-
toJSON(data?: any): any;
|
|
1463
|
-
}
|
|
1464
|
-
export interface IRemoveProductSelectionRequest {
|
|
1465
|
-
sessionId?: string | undefined;
|
|
1466
|
-
}
|
|
1467
1449
|
export declare class SelectCategoryRequest implements ISelectCategoryRequest {
|
|
1468
1450
|
sessionId?: string | undefined;
|
|
1469
1451
|
categoryLayer: number;
|
|
@@ -1494,6 +1476,42 @@ export interface ISelectColourRequest {
|
|
|
1494
1476
|
colourName?: string | undefined;
|
|
1495
1477
|
colourValue?: string | undefined;
|
|
1496
1478
|
}
|
|
1479
|
+
export declare class SelectFilterCustomRequest implements ISelectFilterCustomRequest {
|
|
1480
|
+
sessionId?: string | undefined;
|
|
1481
|
+
filterId: number;
|
|
1482
|
+
customValue?: string | undefined;
|
|
1483
|
+
constructor(data?: ISelectFilterCustomRequest);
|
|
1484
|
+
init(_data?: any): void;
|
|
1485
|
+
static fromJS(data: any): SelectFilterCustomRequest;
|
|
1486
|
+
toJSON(data?: any): any;
|
|
1487
|
+
}
|
|
1488
|
+
export interface ISelectFilterCustomRequest {
|
|
1489
|
+
sessionId?: string | undefined;
|
|
1490
|
+
filterId: number;
|
|
1491
|
+
customValue?: string | undefined;
|
|
1492
|
+
}
|
|
1493
|
+
export declare class SelectProductRequest implements ISelectProductRequest {
|
|
1494
|
+
sessionId?: string | undefined;
|
|
1495
|
+
productId: number;
|
|
1496
|
+
constructor(data?: ISelectProductRequest);
|
|
1497
|
+
init(_data?: any): void;
|
|
1498
|
+
static fromJS(data: any): SelectProductRequest;
|
|
1499
|
+
toJSON(data?: any): any;
|
|
1500
|
+
}
|
|
1501
|
+
export interface ISelectProductRequest {
|
|
1502
|
+
sessionId?: string | undefined;
|
|
1503
|
+
productId: number;
|
|
1504
|
+
}
|
|
1505
|
+
export declare class RemoveProductSelectionRequest implements IRemoveProductSelectionRequest {
|
|
1506
|
+
sessionId?: string | undefined;
|
|
1507
|
+
constructor(data?: IRemoveProductSelectionRequest);
|
|
1508
|
+
init(_data?: any): void;
|
|
1509
|
+
static fromJS(data: any): RemoveProductSelectionRequest;
|
|
1510
|
+
toJSON(data?: any): any;
|
|
1511
|
+
}
|
|
1512
|
+
export interface IRemoveProductSelectionRequest {
|
|
1513
|
+
sessionId?: string | undefined;
|
|
1514
|
+
}
|
|
1497
1515
|
export declare class ResetFilterRequest implements IResetFilterRequest {
|
|
1498
1516
|
sessionId?: string | undefined;
|
|
1499
1517
|
filterId: number;
|