fabrikantencore 2.1.18 → 2.2.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/esm2020/src/app/modules/fabrikantencore/beheer/components/beheer-filters/beheer-filters.component.mjs +70 -46
- package/esm2020/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products-ebo/beheer-products-ebo.component.mjs +79 -44
- package/esm2020/src/app/modules/fabrikantencore/beheer/components/beheer-select-filteroption-dialog/beheer-select-filteroption-dialog.component.mjs +36 -37
- package/esm2020/src/app/modules/fabrikantencore/components/fab-actionmenu/fab-actionmenu.component.mjs +3 -3
- package/esm2020/src/app/modules/fabrikantencore/components/fab-filter/fab-filter.component.mjs +50 -3
- package/esm2020/src/app/modules/fabrikantencore/components/fab-header/fab-header.component.mjs +3 -3
- package/esm2020/src/app/modules/fabrikantencore/components/fab-input/fab-input.component.mjs +4 -3
- package/esm2020/src/app/modules/fabrikantencore/components/fab-multiselect/fab-multiselect.component.mjs +44 -0
- package/esm2020/src/app/modules/fabrikantencore/components/fab-product-tile/fab-product-tile.component.mjs +10 -5
- package/esm2020/src/app/modules/fabrikantencore/fabrikantencore.module.mjs +6 -3
- package/esm2020/src/app/modules/fabrikantencore/services/bestek.service.mjs +5 -1
- package/esm2020/src/app/modules/fabrikantencore/services/fabrikanten.service.mjs +124 -18
- package/esm2020/src/app/modules/fabrikantencore/services/importsets.service.mjs +25 -4
- package/esm2020/src/app/modules/fabrikantencore/services/svg.service.mjs +4 -1
- package/esm2020/src/app/modules/fabrikantencore/services/webgl.service.mjs +5 -1
- package/esm2020/src/app/modules/fabrikantencore/swagger/SwaggerClient.mjs +320 -9
- package/fesm2015/fabrikantencore.mjs +819 -220
- package/fesm2015/fabrikantencore.mjs.map +1 -1
- package/fesm2020/fabrikantencore.mjs +816 -220
- package/fesm2020/fabrikantencore.mjs.map +1 -1
- package/package.json +1 -1
- package/src/app/modules/fabrikantencore/beheer/components/beheer-filters/beheer-filters.component.d.ts +3 -1
- package/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products-ebo/beheer-products-ebo.component.d.ts +5 -2
- package/src/app/modules/fabrikantencore/beheer/components/beheer-select-filteroption-dialog/beheer-select-filteroption-dialog.component.d.ts +8 -7
- package/src/app/modules/fabrikantencore/components/fab-filter/fab-filter.component.d.ts +3 -0
- package/src/app/modules/fabrikantencore/components/fab-multiselect/fab-multiselect.component.d.ts +19 -0
- package/src/app/modules/fabrikantencore/fabrikantencore.module.d.ts +27 -26
- package/src/app/modules/fabrikantencore/services/bestek.service.d.ts +2 -0
- package/src/app/modules/fabrikantencore/services/fabrikanten.service.d.ts +5 -1
- package/src/app/modules/fabrikantencore/services/importsets.service.d.ts +9 -2
- package/src/app/modules/fabrikantencore/services/webgl.service.d.ts +2 -0
- package/src/app/modules/fabrikantencore/swagger/SwaggerClient.d.ts +127 -8
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ChangeDetectorRef, OnInit } from '@angular/core';
|
|
2
|
-
import { FiltersApiClient, InputsViewModel, FilterOptionRequiredViewModel, InputViewModel, FilterOptionViewModel } from '../../../swagger/SwaggerClient';
|
|
2
|
+
import { FiltersApiClient, InputsViewModel, FilterOptionRequiredViewModel, RangeInputFilterOptionRequiredViewModel, InputViewModel, FilterOptionViewModel } from '../../../swagger/SwaggerClient';
|
|
3
3
|
import { CdkDragDrop } from '@angular/cdk/drag-drop';
|
|
4
4
|
import { MatDialog } from '@angular/material/dialog';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
@@ -22,6 +22,8 @@ export declare class BeheerFiltersComponent implements OnInit {
|
|
|
22
22
|
RequireFilter(): void;
|
|
23
23
|
RequireFilterOption(): void;
|
|
24
24
|
RemoveRequireFilterOption(require: FilterOptionRequiredViewModel): void;
|
|
25
|
+
RequireRangeInputFilterOption(): void;
|
|
26
|
+
RemoveRequireRangeInputFilterOption(require: RangeInputFilterOptionRequiredViewModel): void;
|
|
25
27
|
RemoveFilterOption(option: FilterOptionViewModel): void;
|
|
26
28
|
private LoadInputs;
|
|
27
29
|
private SaveInputs;
|
|
@@ -1,19 +1,22 @@
|
|
|
1
1
|
import { ChangeDetectorRef, OnInit } from '@angular/core';
|
|
2
2
|
import { MatDialog } from '@angular/material/dialog';
|
|
3
3
|
import { ProductsService } from '../../../../services/products.service';
|
|
4
|
+
import { ImportSetsService } from '../../../../services/importsets.service';
|
|
4
5
|
import { ProductsApiClient, BCBEBOViewModel, BCBOpbouwViewModel } from '../../../../swagger/SwaggerClient';
|
|
5
6
|
import * as i0 from "@angular/core";
|
|
6
7
|
export declare class BeheerProductsEboComponent implements OnInit {
|
|
7
8
|
dialog: MatDialog;
|
|
9
|
+
ImportSetsService: ImportSetsService;
|
|
8
10
|
private ProductsApiClient;
|
|
9
11
|
private ProductsService;
|
|
10
12
|
private ChangeDetectorRef;
|
|
11
13
|
ebo: BCBEBOViewModel;
|
|
12
|
-
constructor(dialog: MatDialog, ProductsApiClient: ProductsApiClient, ProductsService: ProductsService, ChangeDetectorRef: ChangeDetectorRef);
|
|
14
|
+
constructor(dialog: MatDialog, ImportSetsService: ImportSetsService, ProductsApiClient: ProductsApiClient, ProductsService: ProductsService, ChangeDetectorRef: ChangeDetectorRef);
|
|
13
15
|
ngOnInit(): void;
|
|
14
16
|
ConnectAv(): boolean;
|
|
15
|
-
|
|
17
|
+
Connect(): void;
|
|
16
18
|
ConnectMany(): void;
|
|
19
|
+
Ignore(): void;
|
|
17
20
|
IgnoreMany(): void;
|
|
18
21
|
RemoveIgnore(): void;
|
|
19
22
|
Remove(): void;
|
|
@@ -1,22 +1,23 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
1
|
+
import { AfterViewInit, ChangeDetectorRef, OnInit } from '@angular/core';
|
|
2
2
|
import { MatDialogRef } from '@angular/material/dialog';
|
|
3
|
-
import {
|
|
3
|
+
import { ImportSetsService } from '../../../services/importsets.service';
|
|
4
|
+
import { FiltersApiClient, FilterViewModel, FilterOptionViewModel } from '../../../swagger/SwaggerClient';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class BeheerSelectFilteroptionDialogComponent implements OnInit {
|
|
6
|
+
export declare class BeheerSelectFilteroptionDialogComponent implements OnInit, AfterViewInit {
|
|
6
7
|
private FiltersApiClient;
|
|
7
8
|
dialogRef: MatDialogRef<BeheerSelectFilteroptionDialogComponent>;
|
|
8
|
-
|
|
9
|
-
|
|
9
|
+
ImportSetsService: ImportSetsService;
|
|
10
|
+
private ChangeDetectorRef;
|
|
10
11
|
OptieNaamNieuw: string;
|
|
11
12
|
FilterSelected: FilterViewModel;
|
|
12
13
|
FilterOptieSelected: FilterOptionViewModel;
|
|
13
|
-
constructor(FiltersApiClient: FiltersApiClient, dialogRef: MatDialogRef<BeheerSelectFilteroptionDialogComponent
|
|
14
|
+
constructor(FiltersApiClient: FiltersApiClient, dialogRef: MatDialogRef<BeheerSelectFilteroptionDialogComponent>, ImportSetsService: ImportSetsService, ChangeDetectorRef: ChangeDetectorRef);
|
|
14
15
|
ngOnInit(): void;
|
|
16
|
+
ngAfterViewInit(): void;
|
|
15
17
|
Loading(): boolean;
|
|
16
18
|
NieuwOptieToevoegen(): void;
|
|
17
19
|
BestaandToevoegen(): void;
|
|
18
20
|
GetOpties(): Array<FilterOptionViewModel>;
|
|
19
|
-
private LoadFilters;
|
|
20
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<BeheerSelectFilteroptionDialogComponent, never>;
|
|
21
22
|
static ɵcmp: i0.ɵɵComponentDeclaration<BeheerSelectFilteroptionDialogComponent, "app-beheer-select-filteroption-dialog", never, {}, {}, never, never, false, never>;
|
|
22
23
|
}
|
|
@@ -17,7 +17,10 @@ export declare class FabFilterComponent implements OnInit {
|
|
|
17
17
|
SelectOption(): void;
|
|
18
18
|
ResetSelection(): void;
|
|
19
19
|
IsDisabled(): boolean;
|
|
20
|
+
ShowDescription(): boolean;
|
|
21
|
+
GetDescription(): string;
|
|
20
22
|
GetSelectedOption(): FabrikantenFilterOptionViewModel | null;
|
|
23
|
+
private GetAllOptionsExceptFirstAndLast;
|
|
21
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<FabFilterComponent, never>;
|
|
22
25
|
static ɵcmp: i0.ɵɵComponentDeclaration<FabFilterComponent, "app-fab-filter", never, { "filter": "filter"; }, { "filterchanged": "filterchanged"; }, never, never, false, never>;
|
|
23
26
|
}
|
package/src/app/modules/fabrikantencore/components/fab-multiselect/fab-multiselect.component.d.ts
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { ChangeDetectorRef, EventEmitter } from '@angular/core';
|
|
2
|
+
import { FabrikantenService } from '../../services/fabrikanten.service';
|
|
3
|
+
import { TranslateService } from '../../services/translate.service';
|
|
4
|
+
import { FabrikantenFilterViewModel } from '../../swagger/SwaggerClient';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class FabMultiselectComponent {
|
|
7
|
+
private FabrikantenService;
|
|
8
|
+
TranslateService: TranslateService;
|
|
9
|
+
private ChangeDetectorRef;
|
|
10
|
+
_filter: FabrikantenFilterViewModel;
|
|
11
|
+
get filter(): FabrikantenFilterViewModel;
|
|
12
|
+
set filter(value: FabrikantenFilterViewModel);
|
|
13
|
+
filterchanged: EventEmitter<void>;
|
|
14
|
+
constructor(FabrikantenService: FabrikantenService, TranslateService: TranslateService, ChangeDetectorRef: ChangeDetectorRef);
|
|
15
|
+
SelectOption(id: number): void;
|
|
16
|
+
IsChecked(id: number): boolean;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FabMultiselectComponent, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FabMultiselectComponent, "app-fab-multiselect", never, { "filter": "filter"; }, { "filterchanged": "filterchanged"; }, never, never, false, never>;
|
|
19
|
+
}
|
|
@@ -62,33 +62,34 @@ import * as i60 from "./components/fab-actionmenu/fab-actionmenu.component";
|
|
|
62
62
|
import * as i61 from "./components/fab-select-bcbproduct/fab-select-bcbproduct.component";
|
|
63
63
|
import * as i62 from "./components/fab-input/fab-input.component";
|
|
64
64
|
import * as i63 from "./beheer/components/beheer-select-filteroption-dialog/beheer-select-filteroption-dialog.component";
|
|
65
|
-
import * as i64 from "
|
|
66
|
-
import * as i65 from "@angular/common
|
|
67
|
-
import * as i66 from "@angular/
|
|
68
|
-
import * as i67 from "@angular/
|
|
69
|
-
import * as i68 from "@angular/
|
|
70
|
-
import * as i69 from "@angular/
|
|
71
|
-
import * as i70 from "@angular/material/
|
|
72
|
-
import * as i71 from "@angular/material/
|
|
73
|
-
import * as i72 from "@angular/material/
|
|
74
|
-
import * as i73 from "@angular/material/
|
|
75
|
-
import * as i74 from "@angular/material/
|
|
76
|
-
import * as i75 from "@angular/material/
|
|
77
|
-
import * as i76 from "@angular/material/
|
|
78
|
-
import * as i77 from "@angular/material/
|
|
79
|
-
import * as i78 from "@angular/material/
|
|
80
|
-
import * as i79 from "@angular/material/
|
|
81
|
-
import * as i80 from "@angular/material/
|
|
82
|
-
import * as i81 from "@angular/
|
|
83
|
-
import * as i82 from "@angular/
|
|
84
|
-
import * as i83 from "@angular/material/
|
|
85
|
-
import * as i84 from "@angular/material/
|
|
86
|
-
import * as i85 from "@angular/material/
|
|
87
|
-
import * as i86 from "@angular/material/
|
|
88
|
-
import * as i87 from "@angular/material/
|
|
89
|
-
import * as i88 from "@angular/
|
|
65
|
+
import * as i64 from "./components/fab-multiselect/fab-multiselect.component";
|
|
66
|
+
import * as i65 from "@angular/common";
|
|
67
|
+
import * as i66 from "@angular/common/http";
|
|
68
|
+
import * as i67 from "@angular/material/input";
|
|
69
|
+
import * as i68 from "@angular/forms";
|
|
70
|
+
import * as i69 from "@angular/platform-browser/animations";
|
|
71
|
+
import * as i70 from "@angular/material/tooltip";
|
|
72
|
+
import * as i71 from "@angular/material/button";
|
|
73
|
+
import * as i72 from "@angular/material/list";
|
|
74
|
+
import * as i73 from "@angular/material/expansion";
|
|
75
|
+
import * as i74 from "@angular/material/card";
|
|
76
|
+
import * as i75 from "@angular/material/icon";
|
|
77
|
+
import * as i76 from "@angular/material/dialog";
|
|
78
|
+
import * as i77 from "@angular/material/tree";
|
|
79
|
+
import * as i78 from "@angular/material/sidenav";
|
|
80
|
+
import * as i79 from "@angular/material/table";
|
|
81
|
+
import * as i80 from "@angular/material/button-toggle";
|
|
82
|
+
import * as i81 from "@angular/material/stepper";
|
|
83
|
+
import * as i82 from "@angular/cdk/drag-drop";
|
|
84
|
+
import * as i83 from "@angular/material/checkbox";
|
|
85
|
+
import * as i84 from "@angular/material/divider";
|
|
86
|
+
import * as i85 from "@angular/material/tabs";
|
|
87
|
+
import * as i86 from "@angular/material/progress-spinner";
|
|
88
|
+
import * as i87 from "@angular/material/select";
|
|
89
|
+
import * as i88 from "@angular/material/snack-bar";
|
|
90
|
+
import * as i89 from "@angular/router";
|
|
90
91
|
export declare class FabrikantenCoreModule {
|
|
91
92
|
static ɵfac: i0.ɵɵFactoryDeclaration<FabrikantenCoreModule, never>;
|
|
92
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<FabrikantenCoreModule, [typeof i1.FabFiltersComponent, typeof i2.FabCategoryNavigatorComponent, typeof i3.BeheerMainComponent, typeof i4.BeheerInlogComponent, typeof i5.BeheerNavComponent, typeof i6.BeheerUsersComponent, typeof i7.BeheerProductsComponent, typeof i8.BeheerFiltersComponent, typeof i9.BeheerSettingsComponent, typeof i10.FabLoaderComponent, typeof i11.BeheerSearchProductsComponent, typeof i12.BeheerSearchproductsKoppelDialogComponent, typeof i13.BeheerProductsProductComponent, typeof i14.BeheerProductsBcbproductComponent, typeof i15.BeheerImportSetsComponent, typeof i16.BeheerImportSetsOpbouwComponent, typeof i17.BeheerImportSetsEigenschapComponent, typeof i16.BeheerImportSetsEboComponent, typeof i18.BeheerProductsEigenschapComponent, typeof i19.BeheerProductsKoppelFilteroptionDailogComponent, typeof i20.FabFilterComponent, typeof i21.FabProductComponent, typeof i22.FabBcbProductComponent, typeof i23.FabProductSelectComponent, typeof i24.FabProductTileComponent, typeof i25.FabProductInfoComponent, typeof i26.FabProductBestekComponent, typeof i27.FabProductInfoPhotoComponent, typeof i28.FabProductInfoPhotoDialogComponent, typeof i29.BeheerEboKoppelComponent, typeof i30.BeheerSettingsOptionsComponent, typeof i31.BeheerSettingsStringComponent, typeof i32.BeheerImportSetsDialogComponent, typeof i33.BeheerCategoriesComponent, typeof i34.BeheerConnectCategoryDialogComponent, typeof i35.FabStartComponent, typeof i36.FabCategoriesComponent, typeof i37.FabCategoryTileComponent, typeof i38.FabBreadcrumbComponent, typeof i39.FabFiltersInputComponent, typeof i40.FabFiltersOverviewComponent, typeof i41.FabFlagComponent, typeof i42.BeheerTranslateComponent, typeof i43.FabLanguageSelectComponent, typeof i44.FabHeaderComponent, typeof i45.FabWebglViewerComponent, typeof i46.FabSvgViewerComponent, typeof i47.BeheerProductsOpbouwComponent, typeof i47.BeheerProductsEboComponent, typeof i48.BeheerProductsEigenschapBereikComponent, typeof i49.BeheerDisplayEboComponent, typeof i50.BeheerProductsConnectRangeinputComponent, typeof i51.FabRangeInputComponent, typeof i52.BeheerSettingsBooleanComponent, typeof i53.BeheerSelectFilterDialogComponent, typeof i54.FabTextureComponent, typeof i55.FabIframeComponent, typeof i56.BeheerDeeplinkComponent, typeof i57.FabFilterColourComponent, typeof i58.FabFilterColourDialogComponent, typeof i59.FabToebehorenComponent, typeof i60.FabActionmenuComponent, typeof i61.FabSelectBcbproductComponent, typeof i62.FabInputComponent, typeof i63.BeheerSelectFilteroptionDialogComponent], [typeof
|
|
93
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<FabrikantenCoreModule, [typeof i1.FabFiltersComponent, typeof i2.FabCategoryNavigatorComponent, typeof i3.BeheerMainComponent, typeof i4.BeheerInlogComponent, typeof i5.BeheerNavComponent, typeof i6.BeheerUsersComponent, typeof i7.BeheerProductsComponent, typeof i8.BeheerFiltersComponent, typeof i9.BeheerSettingsComponent, typeof i10.FabLoaderComponent, typeof i11.BeheerSearchProductsComponent, typeof i12.BeheerSearchproductsKoppelDialogComponent, typeof i13.BeheerProductsProductComponent, typeof i14.BeheerProductsBcbproductComponent, typeof i15.BeheerImportSetsComponent, typeof i16.BeheerImportSetsOpbouwComponent, typeof i17.BeheerImportSetsEigenschapComponent, typeof i16.BeheerImportSetsEboComponent, typeof i18.BeheerProductsEigenschapComponent, typeof i19.BeheerProductsKoppelFilteroptionDailogComponent, typeof i20.FabFilterComponent, typeof i21.FabProductComponent, typeof i22.FabBcbProductComponent, typeof i23.FabProductSelectComponent, typeof i24.FabProductTileComponent, typeof i25.FabProductInfoComponent, typeof i26.FabProductBestekComponent, typeof i27.FabProductInfoPhotoComponent, typeof i28.FabProductInfoPhotoDialogComponent, typeof i29.BeheerEboKoppelComponent, typeof i30.BeheerSettingsOptionsComponent, typeof i31.BeheerSettingsStringComponent, typeof i32.BeheerImportSetsDialogComponent, typeof i33.BeheerCategoriesComponent, typeof i34.BeheerConnectCategoryDialogComponent, typeof i35.FabStartComponent, typeof i36.FabCategoriesComponent, typeof i37.FabCategoryTileComponent, typeof i38.FabBreadcrumbComponent, typeof i39.FabFiltersInputComponent, typeof i40.FabFiltersOverviewComponent, typeof i41.FabFlagComponent, typeof i42.BeheerTranslateComponent, typeof i43.FabLanguageSelectComponent, typeof i44.FabHeaderComponent, typeof i45.FabWebglViewerComponent, typeof i46.FabSvgViewerComponent, typeof i47.BeheerProductsOpbouwComponent, typeof i47.BeheerProductsEboComponent, typeof i48.BeheerProductsEigenschapBereikComponent, typeof i49.BeheerDisplayEboComponent, typeof i50.BeheerProductsConnectRangeinputComponent, typeof i51.FabRangeInputComponent, typeof i52.BeheerSettingsBooleanComponent, typeof i53.BeheerSelectFilterDialogComponent, typeof i54.FabTextureComponent, typeof i55.FabIframeComponent, typeof i56.BeheerDeeplinkComponent, typeof i57.FabFilterColourComponent, typeof i58.FabFilterColourDialogComponent, typeof i59.FabToebehorenComponent, typeof i60.FabActionmenuComponent, typeof i61.FabSelectBcbproductComponent, typeof i62.FabInputComponent, typeof i63.BeheerSelectFilteroptionDialogComponent, typeof i64.FabMultiselectComponent], [typeof i65.CommonModule, typeof i66.HttpClientModule, typeof i67.MatInputModule, typeof i68.FormsModule, typeof i69.BrowserAnimationsModule, typeof i70.MatTooltipModule, typeof i71.MatButtonModule, typeof i72.MatListModule, typeof i73.MatExpansionModule, typeof i74.MatCardModule, typeof i75.MatIconModule, typeof i76.MatDialogModule, typeof i77.MatTreeModule, typeof i78.MatSidenavModule, typeof i79.MatTableModule, typeof i80.MatButtonToggleModule, typeof i81.MatStepperModule, typeof i82.DragDropModule, typeof i83.MatCheckboxModule, typeof i84.MatDividerModule, typeof i85.MatTabsModule, typeof i86.MatProgressSpinnerModule, typeof i87.MatSelectModule, typeof i88.MatSnackBarModule, typeof i89.RouterModule], [typeof i1.FabFiltersComponent, typeof i2.FabCategoryNavigatorComponent]>;
|
|
93
94
|
static ɵinj: i0.ɵɵInjectorDeclaration<FabrikantenCoreModule>;
|
|
94
95
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ChangeDetectorRef, ElementRef } from '@angular/core';
|
|
2
2
|
import { FabrikantenApiClient, FabrikantenBestekViewModel } from '../swagger/SwaggerClient';
|
|
3
3
|
import { Clipboard } from '@angular/cdk/clipboard';
|
|
4
|
+
import { FabrikantenService } from './fabrikanten.service';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class BestekService {
|
|
6
7
|
private clipboard;
|
|
@@ -8,6 +9,7 @@ export declare class BestekService {
|
|
|
8
9
|
Loading: boolean;
|
|
9
10
|
TypeBestek: string;
|
|
10
11
|
fabProductBestek: ElementRef | null;
|
|
12
|
+
FabrikantenService: FabrikantenService | null;
|
|
11
13
|
FabrikantenBestekViewModel: FabrikantenBestekViewModel;
|
|
12
14
|
constructor(clipboard: Clipboard, FabrikantenApiClient: FabrikantenApiClient);
|
|
13
15
|
GetBestekTekst(): string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ChangeDetectorRef } from '@angular/core';
|
|
2
2
|
import { ActivatedRoute } from '@angular/router';
|
|
3
|
-
import { FabrikantenApiClient, FabrikantenFilterViewModel, FabrikantenViewModel, FabrikantenProductViewModel, FabrikantenBCBProductViewModel, FabrikantenCategoryLayerViewModel, FabrikantenBCBProductToebehorenViewModel, FabrikantenCategoryViewModel } from '../swagger/SwaggerClient';
|
|
3
|
+
import { FabrikantenApiClient, FabrikantenFilterViewModel, FabrikantenViewModel, FabrikantenProductViewModel, FabrikantenBCBProductViewModel, FabrikantenCategoryLayerViewModel, FabrikantenBCBProductToebehorenViewModel, FabrikantenCategoryViewModel, DynamicDisplayValueViewModel } from '../swagger/SwaggerClient';
|
|
4
4
|
import { BestekService } from './bestek.service';
|
|
5
5
|
import { NavigateService } from './navigate.service';
|
|
6
6
|
import { SVGService } from './svg.service';
|
|
@@ -63,6 +63,10 @@ export declare class FabrikantenService {
|
|
|
63
63
|
LoadFabrikantenViewModel(ChangeDetectorRef: ChangeDetectorRef, ActivatedRoute: ActivatedRoute | null): void;
|
|
64
64
|
ProcessParameters(ActivatedRoute: ActivatedRoute | null, ChangeDetectorRef: ChangeDetectorRef): boolean;
|
|
65
65
|
private ResetTabs;
|
|
66
|
+
GetDynamicDisplayValues(): DynamicDisplayValueViewModel[];
|
|
67
|
+
ProcessDynamicModels(): void;
|
|
68
|
+
private ProcessDynamicFilters;
|
|
69
|
+
private ProcessDynamicRangeInputs;
|
|
66
70
|
DownloadARKEYAdomi(custombcbeboid: number | undefined): void;
|
|
67
71
|
DownloadIFC(custombcbeboid: number | undefined): void;
|
|
68
72
|
DownloadRevitPlugin(custombcbeboid: number | undefined): void;
|
|
@@ -1,21 +1,28 @@
|
|
|
1
1
|
import { ChangeDetectorRef } from '@angular/core';
|
|
2
|
-
import { BCBImportOpenResponse, BCBImportSetsViewModel, BCBImportSetViewModel, ImportApiClient } from '../swagger/SwaggerClient';
|
|
2
|
+
import { BCBImportOpenResponse, BCBImportSetsViewModel, BCBImportSetViewModel, FilterOptionViewModel, FiltersApiClient, FiltersViewModel, FilterViewModel, ImportApiClient } from '../swagger/SwaggerClient';
|
|
3
3
|
import { ProductsService } from './products.service';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class ImportSetsService {
|
|
6
6
|
private ImportApiClient;
|
|
7
|
+
private FiltersApiClient;
|
|
7
8
|
LoadingImportSets: boolean;
|
|
8
9
|
LoadingOpen: boolean;
|
|
10
|
+
LoadingFilters: boolean;
|
|
11
|
+
FiltersInit: boolean;
|
|
12
|
+
FilterSelected: FilterViewModel;
|
|
13
|
+
FilterOptieSelected: FilterOptionViewModel;
|
|
14
|
+
FiltersViewModel: FiltersViewModel;
|
|
9
15
|
BCBImportSetsViewModel: BCBImportSetsViewModel;
|
|
10
16
|
BCBImportOpenResponse: BCBImportOpenResponse;
|
|
11
17
|
BCBImportSetSelected: number;
|
|
12
18
|
ProductsService: ProductsService | null;
|
|
13
|
-
constructor(ImportApiClient: ImportApiClient);
|
|
19
|
+
constructor(ImportApiClient: ImportApiClient, FiltersApiClient: FiltersApiClient);
|
|
14
20
|
ChangeImportSetValue(value: string, enabled: boolean, ChangeDetectorRef: ChangeDetectorRef): void;
|
|
15
21
|
Open(id: number, ChangeDetectorRef: ChangeDetectorRef): void;
|
|
16
22
|
GetActiveImportSet(): BCBImportSetViewModel;
|
|
17
23
|
LoadImportSets(ChangeDetectorRef: ChangeDetectorRef): void;
|
|
18
24
|
private RefreshBCBImportOpenResponse;
|
|
25
|
+
LoadFilters(): void;
|
|
19
26
|
private IsValueInSelectedImportSet;
|
|
20
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<ImportSetsService, never>;
|
|
21
28
|
static ɵprov: i0.ɵɵInjectableDeclaration<ImportSetsService>;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ChangeDetectorRef } from '@angular/core';
|
|
2
2
|
import { FabrikantenApiClient, Fabrikanten3DViewModel } from '../swagger/SwaggerClient';
|
|
3
3
|
import type { FabWebglViewerComponent } from '../components/fab-webgl-viewer/fab-webgl-viewer.component';
|
|
4
|
+
import { FabrikantenService } from './fabrikanten.service';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class WebGLService {
|
|
6
7
|
private FabrikantenApiClient;
|
|
@@ -8,6 +9,7 @@ export declare class WebGLService {
|
|
|
8
9
|
ViewerWidth: number;
|
|
9
10
|
ViewerHeight: number;
|
|
10
11
|
Fabrikanten3DViewModel: Fabrikanten3DViewModel;
|
|
12
|
+
FabrikantenService: FabrikantenService | null;
|
|
11
13
|
FabWebglViewerComponent: FabWebglViewerComponent | null;
|
|
12
14
|
FirstCheck: boolean;
|
|
13
15
|
constructor(FabrikantenApiClient: FabrikantenApiClient);
|
|
@@ -156,7 +156,7 @@ export declare class ProductsApiClient {
|
|
|
156
156
|
protected processIgnoreBCBEigenschapOptieFilterOption(response: HttpResponseBase): Observable<void>;
|
|
157
157
|
ignoreBCBEigenschap(pIgnoreBCBEigenschapRequest: IgnoreBCBEigenschapRequest): Observable<void>;
|
|
158
158
|
protected processIgnoreBCBEigenschap(response: HttpResponseBase): Observable<void>;
|
|
159
|
-
ignoreBCBOpbouw(
|
|
159
|
+
ignoreBCBOpbouw(pIgnoreOpbouwRequest: IgnoreOpbouwRequest): Observable<void>;
|
|
160
160
|
protected processIgnoreBCBOpbouw(response: HttpResponseBase): Observable<void>;
|
|
161
161
|
connectOpbouw(pConnectOpbouwRequest: ConnectOpbouwRequest): Observable<void>;
|
|
162
162
|
protected processConnectOpbouw(response: HttpResponseBase): Observable<void>;
|
|
@@ -512,6 +512,7 @@ export interface IBCBEigenschapRangeInputModel {
|
|
|
512
512
|
export declare class RangeInputViewModel implements IRangeInputViewModel {
|
|
513
513
|
id: number;
|
|
514
514
|
name?: string | undefined;
|
|
515
|
+
requiresRangeInputFilterOptions?: RangeInputFilterOptionRequiredViewModel[] | undefined;
|
|
515
516
|
constructor(data?: IRangeInputViewModel);
|
|
516
517
|
init(_data?: any): void;
|
|
517
518
|
static fromJS(data: any): RangeInputViewModel;
|
|
@@ -520,6 +521,27 @@ export declare class RangeInputViewModel implements IRangeInputViewModel {
|
|
|
520
521
|
export interface IRangeInputViewModel {
|
|
521
522
|
id: number;
|
|
522
523
|
name?: string | undefined;
|
|
524
|
+
requiresRangeInputFilterOptions?: RangeInputFilterOptionRequiredViewModel[] | undefined;
|
|
525
|
+
}
|
|
526
|
+
export declare class RangeInputFilterOptionRequiredViewModel implements IRangeInputFilterOptionRequiredViewModel {
|
|
527
|
+
id: number;
|
|
528
|
+
requiredFilterOptionId: number;
|
|
529
|
+
requiredFilterOptionName?: string | undefined;
|
|
530
|
+
requiredFilterName?: string | undefined;
|
|
531
|
+
affectedRangeInputId: number;
|
|
532
|
+
affectedRangeInputName?: string | undefined;
|
|
533
|
+
constructor(data?: IRangeInputFilterOptionRequiredViewModel);
|
|
534
|
+
init(_data?: any): void;
|
|
535
|
+
static fromJS(data: any): RangeInputFilterOptionRequiredViewModel;
|
|
536
|
+
toJSON(data?: any): any;
|
|
537
|
+
}
|
|
538
|
+
export interface IRangeInputFilterOptionRequiredViewModel {
|
|
539
|
+
id: number;
|
|
540
|
+
requiredFilterOptionId: number;
|
|
541
|
+
requiredFilterOptionName?: string | undefined;
|
|
542
|
+
requiredFilterName?: string | undefined;
|
|
543
|
+
affectedRangeInputId: number;
|
|
544
|
+
affectedRangeInputName?: string | undefined;
|
|
523
545
|
}
|
|
524
546
|
export declare class BCBEigenschapToebehorenViewModel implements IBCBEigenschapToebehorenViewModel {
|
|
525
547
|
id: number;
|
|
@@ -727,6 +749,7 @@ export interface IConnectEBODOCategoryRequest {
|
|
|
727
749
|
}
|
|
728
750
|
export declare class FabrikantenViewModel implements IFabrikantenViewModel {
|
|
729
751
|
sessionId?: string | undefined;
|
|
752
|
+
checksum?: string | undefined;
|
|
730
753
|
bcbWebserviceURLBase?: string | undefined;
|
|
731
754
|
hideBreadcrumbInIframe: boolean;
|
|
732
755
|
hideInformationTab: boolean;
|
|
@@ -745,6 +768,7 @@ export declare class FabrikantenViewModel implements IFabrikantenViewModel {
|
|
|
745
768
|
}
|
|
746
769
|
export interface IFabrikantenViewModel {
|
|
747
770
|
sessionId?: string | undefined;
|
|
771
|
+
checksum?: string | undefined;
|
|
748
772
|
bcbWebserviceURLBase?: string | undefined;
|
|
749
773
|
hideBreadcrumbInIframe: boolean;
|
|
750
774
|
hideInformationTab: boolean;
|
|
@@ -822,11 +846,13 @@ export interface IFabrikantenInputViewModel {
|
|
|
822
846
|
export declare class FabrikantenFilterViewModel implements IFabrikantenFilterViewModel {
|
|
823
847
|
id: number;
|
|
824
848
|
name?: string | undefined;
|
|
849
|
+
description?: string | undefined;
|
|
825
850
|
filterType: FilterType;
|
|
826
851
|
hidden: boolean;
|
|
827
852
|
blocksProductSelect: boolean;
|
|
828
853
|
required: boolean;
|
|
829
854
|
selectedOption: number;
|
|
855
|
+
selectedOptions?: number[] | undefined;
|
|
830
856
|
selectedColour?: string | undefined;
|
|
831
857
|
options?: FabrikantenFilterOptionViewModel[] | undefined;
|
|
832
858
|
constructor(data?: IFabrikantenFilterViewModel);
|
|
@@ -837,22 +863,26 @@ export declare class FabrikantenFilterViewModel implements IFabrikantenFilterVie
|
|
|
837
863
|
export interface IFabrikantenFilterViewModel {
|
|
838
864
|
id: number;
|
|
839
865
|
name?: string | undefined;
|
|
866
|
+
description?: string | undefined;
|
|
840
867
|
filterType: FilterType;
|
|
841
868
|
hidden: boolean;
|
|
842
869
|
blocksProductSelect: boolean;
|
|
843
870
|
required: boolean;
|
|
844
871
|
selectedOption: number;
|
|
872
|
+
selectedOptions?: number[] | undefined;
|
|
845
873
|
selectedColour?: string | undefined;
|
|
846
874
|
options?: FabrikantenFilterOptionViewModel[] | undefined;
|
|
847
875
|
}
|
|
848
876
|
export declare enum FilterType {
|
|
849
877
|
Dropdown = 1,
|
|
850
|
-
ColourSelector = 2
|
|
878
|
+
ColourSelector = 2,
|
|
879
|
+
MultiSelect = 3
|
|
851
880
|
}
|
|
852
881
|
export declare class FabrikantenFilterOptionViewModel implements IFabrikantenFilterOptionViewModel {
|
|
853
882
|
id: number;
|
|
854
883
|
name?: string | undefined;
|
|
855
884
|
colour?: string | undefined;
|
|
885
|
+
hidden: boolean;
|
|
856
886
|
constructor(data?: IFabrikantenFilterOptionViewModel);
|
|
857
887
|
init(_data?: any): void;
|
|
858
888
|
static fromJS(data: any): FabrikantenFilterOptionViewModel;
|
|
@@ -862,12 +892,14 @@ export interface IFabrikantenFilterOptionViewModel {
|
|
|
862
892
|
id: number;
|
|
863
893
|
name?: string | undefined;
|
|
864
894
|
colour?: string | undefined;
|
|
895
|
+
hidden: boolean;
|
|
865
896
|
}
|
|
866
897
|
export declare class FabrikantenRangeInputViewModel implements IFabrikantenRangeInputViewModel {
|
|
867
898
|
id: number;
|
|
868
899
|
name?: string | undefined;
|
|
869
900
|
value?: string | undefined;
|
|
870
901
|
required: boolean;
|
|
902
|
+
hidden: boolean;
|
|
871
903
|
typeField?: string | undefined;
|
|
872
904
|
minimum: number;
|
|
873
905
|
maximum: number;
|
|
@@ -883,6 +915,7 @@ export interface IFabrikantenRangeInputViewModel {
|
|
|
883
915
|
name?: string | undefined;
|
|
884
916
|
value?: string | undefined;
|
|
885
917
|
required: boolean;
|
|
918
|
+
hidden: boolean;
|
|
886
919
|
typeField?: string | undefined;
|
|
887
920
|
minimum: number;
|
|
888
921
|
maximum: number;
|
|
@@ -892,6 +925,7 @@ export interface IFabrikantenRangeInputViewModel {
|
|
|
892
925
|
export declare class FabrikantenProductViewModel implements IFabrikantenProductViewModel {
|
|
893
926
|
id: number;
|
|
894
927
|
name?: string | undefined;
|
|
928
|
+
imagePath?: string | undefined;
|
|
895
929
|
urlName?: string | undefined;
|
|
896
930
|
textureBaseViewModel?: FabrikantenTextureBaseViewModel | undefined;
|
|
897
931
|
fabrikantenBCBProductViewModels?: FabrikantenBCBProductViewModel[] | undefined;
|
|
@@ -903,6 +937,7 @@ export declare class FabrikantenProductViewModel implements IFabrikantenProductV
|
|
|
903
937
|
export interface IFabrikantenProductViewModel {
|
|
904
938
|
id: number;
|
|
905
939
|
name?: string | undefined;
|
|
940
|
+
imagePath?: string | undefined;
|
|
906
941
|
urlName?: string | undefined;
|
|
907
942
|
textureBaseViewModel?: FabrikantenTextureBaseViewModel | undefined;
|
|
908
943
|
fabrikantenBCBProductViewModels?: FabrikantenBCBProductViewModel[] | undefined;
|
|
@@ -992,24 +1027,84 @@ export interface IFabrikantenRequestModel {
|
|
|
992
1027
|
sessionId?: string | undefined;
|
|
993
1028
|
}
|
|
994
1029
|
export declare class FabrikantenBestekViewModel implements IFabrikantenBestekViewModel {
|
|
1030
|
+
checksum?: string | undefined;
|
|
995
1031
|
stabu?: string | undefined;
|
|
996
1032
|
suf?: string | undefined;
|
|
997
1033
|
osfhtml?: string | undefined;
|
|
998
1034
|
vrijBestekHTML?: string | undefined;
|
|
999
1035
|
wuid?: string | undefined;
|
|
1000
1036
|
instantieNaam?: string | undefined;
|
|
1037
|
+
dynamicDisplayValues?: DynamicDisplayValueViewModel[] | undefined;
|
|
1038
|
+
dynamicRangeInputs?: DynamicRangeInputViewModel[] | undefined;
|
|
1039
|
+
dynamicFilters?: DynamicFiltersViewModel[] | undefined;
|
|
1001
1040
|
constructor(data?: IFabrikantenBestekViewModel);
|
|
1002
1041
|
init(_data?: any): void;
|
|
1003
1042
|
static fromJS(data: any): FabrikantenBestekViewModel;
|
|
1004
1043
|
toJSON(data?: any): any;
|
|
1005
1044
|
}
|
|
1006
1045
|
export interface IFabrikantenBestekViewModel {
|
|
1046
|
+
checksum?: string | undefined;
|
|
1007
1047
|
stabu?: string | undefined;
|
|
1008
1048
|
suf?: string | undefined;
|
|
1009
1049
|
osfhtml?: string | undefined;
|
|
1010
1050
|
vrijBestekHTML?: string | undefined;
|
|
1011
1051
|
wuid?: string | undefined;
|
|
1012
1052
|
instantieNaam?: string | undefined;
|
|
1053
|
+
dynamicDisplayValues?: DynamicDisplayValueViewModel[] | undefined;
|
|
1054
|
+
dynamicRangeInputs?: DynamicRangeInputViewModel[] | undefined;
|
|
1055
|
+
dynamicFilters?: DynamicFiltersViewModel[] | undefined;
|
|
1056
|
+
}
|
|
1057
|
+
export declare class DynamicDisplayValueViewModel implements IDynamicDisplayValueViewModel {
|
|
1058
|
+
name?: string | undefined;
|
|
1059
|
+
value?: string | undefined;
|
|
1060
|
+
constructor(data?: IDynamicDisplayValueViewModel);
|
|
1061
|
+
init(_data?: any): void;
|
|
1062
|
+
static fromJS(data: any): DynamicDisplayValueViewModel;
|
|
1063
|
+
toJSON(data?: any): any;
|
|
1064
|
+
}
|
|
1065
|
+
export interface IDynamicDisplayValueViewModel {
|
|
1066
|
+
name?: string | undefined;
|
|
1067
|
+
value?: string | undefined;
|
|
1068
|
+
}
|
|
1069
|
+
export declare class DynamicRangeInputViewModel implements IDynamicRangeInputViewModel {
|
|
1070
|
+
rangeInputs?: number[] | undefined;
|
|
1071
|
+
maximum: number;
|
|
1072
|
+
minimum: number;
|
|
1073
|
+
inclusiefMaximum: boolean;
|
|
1074
|
+
inclusiefMinimum: boolean;
|
|
1075
|
+
constructor(data?: IDynamicRangeInputViewModel);
|
|
1076
|
+
init(_data?: any): void;
|
|
1077
|
+
static fromJS(data: any): DynamicRangeInputViewModel;
|
|
1078
|
+
toJSON(data?: any): any;
|
|
1079
|
+
}
|
|
1080
|
+
export interface IDynamicRangeInputViewModel {
|
|
1081
|
+
rangeInputs?: number[] | undefined;
|
|
1082
|
+
maximum: number;
|
|
1083
|
+
minimum: number;
|
|
1084
|
+
inclusiefMaximum: boolean;
|
|
1085
|
+
inclusiefMinimum: boolean;
|
|
1086
|
+
}
|
|
1087
|
+
export declare class DynamicFiltersViewModel implements IDynamicFiltersViewModel {
|
|
1088
|
+
filters?: DynamicFilterViewModel[] | undefined;
|
|
1089
|
+
constructor(data?: IDynamicFiltersViewModel);
|
|
1090
|
+
init(_data?: any): void;
|
|
1091
|
+
static fromJS(data: any): DynamicFiltersViewModel;
|
|
1092
|
+
toJSON(data?: any): any;
|
|
1093
|
+
}
|
|
1094
|
+
export interface IDynamicFiltersViewModel {
|
|
1095
|
+
filters?: DynamicFilterViewModel[] | undefined;
|
|
1096
|
+
}
|
|
1097
|
+
export declare class DynamicFilterViewModel implements IDynamicFilterViewModel {
|
|
1098
|
+
filterId: number;
|
|
1099
|
+
filterOptionsAllowed?: number[] | undefined;
|
|
1100
|
+
constructor(data?: IDynamicFilterViewModel);
|
|
1101
|
+
init(_data?: any): void;
|
|
1102
|
+
static fromJS(data: any): DynamicFilterViewModel;
|
|
1103
|
+
toJSON(data?: any): any;
|
|
1104
|
+
}
|
|
1105
|
+
export interface IDynamicFilterViewModel {
|
|
1106
|
+
filterId: number;
|
|
1107
|
+
filterOptionsAllowed?: number[] | undefined;
|
|
1013
1108
|
}
|
|
1014
1109
|
export declare class FabrikantenBestekRequestModel implements IFabrikantenBestekRequestModel {
|
|
1015
1110
|
sessionId?: string | undefined;
|
|
@@ -1022,22 +1117,30 @@ export interface IFabrikantenBestekRequestModel {
|
|
|
1022
1117
|
sessionId?: string | undefined;
|
|
1023
1118
|
}
|
|
1024
1119
|
export declare class Fabrikanten3DViewModel implements IFabrikanten3DViewModel {
|
|
1120
|
+
checksum?: string | undefined;
|
|
1025
1121
|
wuid?: string | undefined;
|
|
1026
1122
|
instantieNaam?: string | undefined;
|
|
1027
1123
|
webGLJSON?: string | undefined;
|
|
1028
1124
|
nativeRFA: boolean;
|
|
1029
1125
|
snedes?: string | undefined;
|
|
1126
|
+
dynamicDisplayValues?: DynamicDisplayValueViewModel[] | undefined;
|
|
1127
|
+
dynamicRangeInputs?: DynamicRangeInputViewModel[] | undefined;
|
|
1128
|
+
dynamicFilters?: DynamicFiltersViewModel[] | undefined;
|
|
1030
1129
|
constructor(data?: IFabrikanten3DViewModel);
|
|
1031
1130
|
init(_data?: any): void;
|
|
1032
1131
|
static fromJS(data: any): Fabrikanten3DViewModel;
|
|
1033
1132
|
toJSON(data?: any): any;
|
|
1034
1133
|
}
|
|
1035
1134
|
export interface IFabrikanten3DViewModel {
|
|
1135
|
+
checksum?: string | undefined;
|
|
1036
1136
|
wuid?: string | undefined;
|
|
1037
1137
|
instantieNaam?: string | undefined;
|
|
1038
1138
|
webGLJSON?: string | undefined;
|
|
1039
1139
|
nativeRFA: boolean;
|
|
1040
1140
|
snedes?: string | undefined;
|
|
1141
|
+
dynamicDisplayValues?: DynamicDisplayValueViewModel[] | undefined;
|
|
1142
|
+
dynamicRangeInputs?: DynamicRangeInputViewModel[] | undefined;
|
|
1143
|
+
dynamicFilters?: DynamicFiltersViewModel[] | undefined;
|
|
1041
1144
|
}
|
|
1042
1145
|
export declare class Fabrikanten3DRequestModel implements IFabrikanten3DRequestModel {
|
|
1043
1146
|
sessionId?: string | undefined;
|
|
@@ -1052,22 +1155,30 @@ export interface IFabrikanten3DRequestModel {
|
|
|
1052
1155
|
customBCBEBO: number;
|
|
1053
1156
|
}
|
|
1054
1157
|
export declare class FabrikantenSVGViewModel implements IFabrikantenSVGViewModel {
|
|
1158
|
+
checksum?: string | undefined;
|
|
1055
1159
|
wuid?: string | undefined;
|
|
1056
1160
|
instantieNaam?: string | undefined;
|
|
1057
1161
|
svg?: string | undefined;
|
|
1058
1162
|
nativeRFA: boolean;
|
|
1059
1163
|
snedes?: string | undefined;
|
|
1164
|
+
dynamicDisplayValues?: DynamicDisplayValueViewModel[] | undefined;
|
|
1165
|
+
dynamicRangeInputs?: DynamicRangeInputViewModel[] | undefined;
|
|
1166
|
+
dynamicFilters?: DynamicFiltersViewModel[] | undefined;
|
|
1060
1167
|
constructor(data?: IFabrikantenSVGViewModel);
|
|
1061
1168
|
init(_data?: any): void;
|
|
1062
1169
|
static fromJS(data: any): FabrikantenSVGViewModel;
|
|
1063
1170
|
toJSON(data?: any): any;
|
|
1064
1171
|
}
|
|
1065
1172
|
export interface IFabrikantenSVGViewModel {
|
|
1173
|
+
checksum?: string | undefined;
|
|
1066
1174
|
wuid?: string | undefined;
|
|
1067
1175
|
instantieNaam?: string | undefined;
|
|
1068
1176
|
svg?: string | undefined;
|
|
1069
1177
|
nativeRFA: boolean;
|
|
1070
1178
|
snedes?: string | undefined;
|
|
1179
|
+
dynamicDisplayValues?: DynamicDisplayValueViewModel[] | undefined;
|
|
1180
|
+
dynamicRangeInputs?: DynamicRangeInputViewModel[] | undefined;
|
|
1181
|
+
dynamicFilters?: DynamicFiltersViewModel[] | undefined;
|
|
1071
1182
|
}
|
|
1072
1183
|
export declare class FabrikantenSVGRequestModel implements IFabrikantenSVGRequestModel {
|
|
1073
1184
|
width: number;
|
|
@@ -1113,6 +1224,7 @@ export interface IFabrikantenTextureRequestModel {
|
|
|
1113
1224
|
}
|
|
1114
1225
|
export declare class FabrikantenFileViewModel implements IFabrikantenFileViewModel {
|
|
1115
1226
|
file?: string | undefined;
|
|
1227
|
+
customRFAZip: boolean;
|
|
1116
1228
|
constructor(data?: IFabrikantenFileViewModel);
|
|
1117
1229
|
init(_data?: any): void;
|
|
1118
1230
|
static fromJS(data: any): FabrikantenFileViewModel;
|
|
@@ -1120,6 +1232,7 @@ export declare class FabrikantenFileViewModel implements IFabrikantenFileViewMod
|
|
|
1120
1232
|
}
|
|
1121
1233
|
export interface IFabrikantenFileViewModel {
|
|
1122
1234
|
file?: string | undefined;
|
|
1235
|
+
customRFAZip: boolean;
|
|
1123
1236
|
}
|
|
1124
1237
|
export declare class FabrikantenFileRequestModel implements IFabrikantenFileRequestModel {
|
|
1125
1238
|
fileType?: string | undefined;
|
|
@@ -1442,6 +1555,7 @@ export interface ICreateFilterOptionRequest {
|
|
|
1442
1555
|
export declare class SetFilterOptionRequiredRequest implements ISetFilterOptionRequiredRequest {
|
|
1443
1556
|
filterOptionId: number;
|
|
1444
1557
|
filterId: number;
|
|
1558
|
+
rangeInputId: number;
|
|
1445
1559
|
constructor(data?: ISetFilterOptionRequiredRequest);
|
|
1446
1560
|
init(_data?: any): void;
|
|
1447
1561
|
static fromJS(data: any): SetFilterOptionRequiredRequest;
|
|
@@ -1450,6 +1564,7 @@ export declare class SetFilterOptionRequiredRequest implements ISetFilterOptionR
|
|
|
1450
1564
|
export interface ISetFilterOptionRequiredRequest {
|
|
1451
1565
|
filterOptionId: number;
|
|
1452
1566
|
filterId: number;
|
|
1567
|
+
rangeInputId: number;
|
|
1453
1568
|
}
|
|
1454
1569
|
export declare class SetFilterRequiredRequest implements ISetFilterRequiredRequest {
|
|
1455
1570
|
filterRequiredId: number;
|
|
@@ -1834,23 +1949,24 @@ export interface IIgnoreBCBEigenschapRequest {
|
|
|
1834
1949
|
many: boolean;
|
|
1835
1950
|
}
|
|
1836
1951
|
export declare class IgnoreOpbouwRequest implements IIgnoreOpbouwRequest {
|
|
1837
|
-
|
|
1952
|
+
bcbOpbouwId: number;
|
|
1838
1953
|
bcbeboId: number;
|
|
1839
|
-
location?: string | undefined;
|
|
1840
1954
|
constructor(data?: IIgnoreOpbouwRequest);
|
|
1841
1955
|
init(_data?: any): void;
|
|
1842
1956
|
static fromJS(data: any): IgnoreOpbouwRequest;
|
|
1843
1957
|
toJSON(data?: any): any;
|
|
1844
1958
|
}
|
|
1845
1959
|
export interface IIgnoreOpbouwRequest {
|
|
1846
|
-
|
|
1960
|
+
bcbOpbouwId: number;
|
|
1847
1961
|
bcbeboId: number;
|
|
1848
|
-
location?: string | undefined;
|
|
1849
1962
|
}
|
|
1850
1963
|
export declare class ConnectOpbouwRequest implements IConnectOpbouwRequest {
|
|
1851
1964
|
filterId: number;
|
|
1965
|
+
filterOptionId: number;
|
|
1852
1966
|
bcbeboId: number;
|
|
1853
|
-
|
|
1967
|
+
bcbOpbouwId: number;
|
|
1968
|
+
bcbImportSetId: number;
|
|
1969
|
+
location?: string | undefined;
|
|
1854
1970
|
constructor(data?: IConnectOpbouwRequest);
|
|
1855
1971
|
init(_data?: any): void;
|
|
1856
1972
|
static fromJS(data: any): ConnectOpbouwRequest;
|
|
@@ -1858,8 +1974,11 @@ export declare class ConnectOpbouwRequest implements IConnectOpbouwRequest {
|
|
|
1858
1974
|
}
|
|
1859
1975
|
export interface IConnectOpbouwRequest {
|
|
1860
1976
|
filterId: number;
|
|
1977
|
+
filterOptionId: number;
|
|
1861
1978
|
bcbeboId: number;
|
|
1862
|
-
|
|
1979
|
+
bcbOpbouwId: number;
|
|
1980
|
+
bcbImportSetId: number;
|
|
1981
|
+
location?: string | undefined;
|
|
1863
1982
|
}
|
|
1864
1983
|
export declare class ConnectBCBEigenschapRequest implements IConnectBCBEigenschapRequest {
|
|
1865
1984
|
filterId: number;
|