fabrikantencore 2.7.7 → 2.8.0
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/public_api.mjs +2 -1
- package/esm2022/src/app/modules/fabrikantencore/beheer/components/beheer-translate/beheer-translate.component.mjs +45 -38
- package/esm2022/src/app/modules/fabrikantencore/components/fab-actionmenu/fab-actionmenu.component.mjs +22 -18
- package/esm2022/src/app/modules/fabrikantencore/components/fab-checkbox/fab-checkbox.component.mjs +6 -4
- package/esm2022/src/app/modules/fabrikantencore/components/fab-download-zip/fab-download-zip.component.mjs +81 -0
- package/esm2022/src/app/modules/fabrikantencore/components/fab-filter-display-value/fab-filter-display-value.component.mjs +6 -4
- package/esm2022/src/app/modules/fabrikantencore/components/fab-filter-label/fab-filter-label.component.mjs +7 -6
- package/esm2022/src/app/modules/fabrikantencore/components/fab-filters-input/fab-filters-input.component.mjs +3 -3
- package/esm2022/src/app/modules/fabrikantencore/components/fab-form-dialog/fab-form-dialog.component.mjs +102 -0
- package/esm2022/src/app/modules/fabrikantencore/components/fab-input-code/fab-input-code.component.mjs +93 -0
- package/esm2022/src/app/modules/fabrikantencore/components/fab-range-input/fab-range-input.component.mjs +3 -3
- package/esm2022/src/app/modules/fabrikantencore/components/fab-svg-viewer/fab-svg-viewer.component.mjs +1 -4
- package/esm2022/src/app/modules/fabrikantencore/components/fab-webgl-viewer/fab-webgl-viewer.component.mjs +1 -4
- package/esm2022/src/app/modules/fabrikantencore/fabrikantencore.module.mjs +20 -6
- package/esm2022/src/app/modules/fabrikantencore/services/fabrikanten.service.mjs +112 -174
- package/esm2022/src/app/modules/fabrikantencore/swagger/SwaggerClient.mjs +908 -198
- package/fesm2022/fabrikantencore.mjs +1586 -692
- package/fesm2022/fabrikantencore.mjs.map +1 -1
- package/package.json +1 -1
- package/public_api.d.ts +1 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-translate/beheer-translate.component.d.ts +1 -1
- package/src/app/modules/fabrikantencore/components/fab-actionmenu/fab-actionmenu.component.d.ts +6 -7
- package/src/app/modules/fabrikantencore/components/fab-download-zip/fab-download-zip.component.d.ts +20 -0
- package/src/app/modules/fabrikantencore/components/fab-form-dialog/fab-form-dialog.component.d.ts +25 -0
- package/src/app/modules/fabrikantencore/components/fab-input-code/fab-input-code.component.d.ts +29 -0
- package/src/app/modules/fabrikantencore/components/fab-svg-viewer/fab-svg-viewer.component.d.ts +0 -1
- package/src/app/modules/fabrikantencore/components/fab-webgl-viewer/fab-webgl-viewer.component.d.ts +0 -1
- package/src/app/modules/fabrikantencore/fabrikantencore.module.d.ts +32 -29
- package/src/app/modules/fabrikantencore/services/fabrikanten.service.d.ts +9 -21
- package/src/app/modules/fabrikantencore/swagger/SwaggerClient.d.ts +310 -68
|
@@ -56,6 +56,8 @@ export declare class FabrikantenApiClient {
|
|
|
56
56
|
protected processGetBCBLink(response: HttpResponseBase): Observable<BCBLinkResponseModel>;
|
|
57
57
|
resetCache(): Observable<void>;
|
|
58
58
|
protected processResetCache(response: HttpResponseBase): Observable<void>;
|
|
59
|
+
setForm(pFabrikantenSetFormRequest: FabrikantenSetFormRequest): Observable<void>;
|
|
60
|
+
protected processSetForm(response: HttpResponseBase): Observable<void>;
|
|
59
61
|
setRangeInput(pSetRangeInputRequest: SetRangeInputRequest): Observable<void>;
|
|
60
62
|
protected processSetRangeInput(response: HttpResponseBase): Observable<void>;
|
|
61
63
|
selectFilterOption(pSelectFilterOptionRequest: SelectFilterOptionRequest): Observable<void>;
|
|
@@ -80,6 +82,10 @@ export declare class FabrikantenApiClient {
|
|
|
80
82
|
protected processResetAllFilters(response: HttpResponseBase): Observable<void>;
|
|
81
83
|
resetAllCategories(pResetAllCategoriesRequest: ResetAllCategoriesRequest): Observable<void>;
|
|
82
84
|
protected processResetAllCategories(response: HttpResponseBase): Observable<void>;
|
|
85
|
+
createInstance(pFabrikantenCreateInstanceRequest: FabrikantenCreateInstanceRequest): Observable<FabrikantenInstanceViewModel>;
|
|
86
|
+
protected processCreateInstance(response: HttpResponseBase): Observable<FabrikantenInstanceViewModel>;
|
|
87
|
+
openInstance(pFabrikantenOpenInstanceRequest: FabrikantenOpenInstanceRequest): Observable<FabrikantenOpenInstanceResponse>;
|
|
88
|
+
protected processOpenInstance(response: HttpResponseBase): Observable<FabrikantenOpenInstanceResponse>;
|
|
83
89
|
static ɵfac: i0.ɵɵFactoryDeclaration<FabrikantenApiClient, [null, { optional: true; }]>;
|
|
84
90
|
static ɵprov: i0.ɵɵInjectableDeclaration<FabrikantenApiClient>;
|
|
85
91
|
}
|
|
@@ -809,6 +815,7 @@ export declare class FabrikantenViewModel implements IFabrikantenViewModel {
|
|
|
809
815
|
sessionId?: string | undefined;
|
|
810
816
|
checksum?: string | undefined;
|
|
811
817
|
productSelectBlockedByFilters: boolean;
|
|
818
|
+
hasFilledForms: boolean;
|
|
812
819
|
categoryLayers?: FabrikantenCategoryLayerViewModel[] | undefined;
|
|
813
820
|
filterCategories?: FabrikantenFilterCategoryViewModel[] | undefined;
|
|
814
821
|
inputs?: FabrikantenInputViewModel[] | undefined;
|
|
@@ -823,6 +830,7 @@ export interface IFabrikantenViewModel {
|
|
|
823
830
|
sessionId?: string | undefined;
|
|
824
831
|
checksum?: string | undefined;
|
|
825
832
|
productSelectBlockedByFilters: boolean;
|
|
833
|
+
hasFilledForms: boolean;
|
|
826
834
|
categoryLayers?: FabrikantenCategoryLayerViewModel[] | undefined;
|
|
827
835
|
filterCategories?: FabrikantenFilterCategoryViewModel[] | undefined;
|
|
828
836
|
inputs?: FabrikantenInputViewModel[] | undefined;
|
|
@@ -866,6 +874,7 @@ export interface IFabrikantenCategoryViewModel {
|
|
|
866
874
|
export declare class FabrikantenFilterCategoryViewModel implements IFabrikantenFilterCategoryViewModel {
|
|
867
875
|
id: number;
|
|
868
876
|
name?: string | undefined;
|
|
877
|
+
icon?: string | undefined;
|
|
869
878
|
position: number;
|
|
870
879
|
completed: boolean;
|
|
871
880
|
inputs?: FabrikantenInputViewModel[] | undefined;
|
|
@@ -877,6 +886,7 @@ export declare class FabrikantenFilterCategoryViewModel implements IFabrikantenF
|
|
|
877
886
|
export interface IFabrikantenFilterCategoryViewModel {
|
|
878
887
|
id: number;
|
|
879
888
|
name?: string | undefined;
|
|
889
|
+
icon?: string | undefined;
|
|
880
890
|
position: number;
|
|
881
891
|
completed: boolean;
|
|
882
892
|
inputs?: FabrikantenInputViewModel[] | undefined;
|
|
@@ -908,6 +918,7 @@ export declare class FabrikantenFilterViewModel implements IFabrikantenFilterVie
|
|
|
908
918
|
description?: string | undefined;
|
|
909
919
|
unit?: string | undefined;
|
|
910
920
|
standard?: string | undefined;
|
|
921
|
+
icon?: string | undefined;
|
|
911
922
|
filterType: FilterType;
|
|
912
923
|
hidden: boolean;
|
|
913
924
|
blocksProductSelect: boolean;
|
|
@@ -932,6 +943,7 @@ export interface IFabrikantenFilterViewModel {
|
|
|
932
943
|
description?: string | undefined;
|
|
933
944
|
unit?: string | undefined;
|
|
934
945
|
standard?: string | undefined;
|
|
946
|
+
icon?: string | undefined;
|
|
935
947
|
filterType: FilterType;
|
|
936
948
|
hidden: boolean;
|
|
937
949
|
blocksProductSelect: boolean;
|
|
@@ -1030,6 +1042,7 @@ export declare class FabrikantenProductViewModel implements IFabrikantenProductV
|
|
|
1030
1042
|
urlName?: string | undefined;
|
|
1031
1043
|
textureBaseViewModel?: FabrikantenTextureBaseViewModel | undefined;
|
|
1032
1044
|
fabrikantenBCBProductViewModels?: FabrikantenBCBProductViewModel[] | undefined;
|
|
1045
|
+
pdfTemplates?: FabrikantenPDFTemplateViewModel[] | undefined;
|
|
1033
1046
|
constructor(data?: IFabrikantenProductViewModel);
|
|
1034
1047
|
init(_data?: any): void;
|
|
1035
1048
|
static fromJS(data: any): FabrikantenProductViewModel;
|
|
@@ -1042,6 +1055,7 @@ export interface IFabrikantenProductViewModel {
|
|
|
1042
1055
|
urlName?: string | undefined;
|
|
1043
1056
|
textureBaseViewModel?: FabrikantenTextureBaseViewModel | undefined;
|
|
1044
1057
|
fabrikantenBCBProductViewModels?: FabrikantenBCBProductViewModel[] | undefined;
|
|
1058
|
+
pdfTemplates?: FabrikantenPDFTemplateViewModel[] | undefined;
|
|
1045
1059
|
}
|
|
1046
1060
|
export declare class FabrikantenTextureBaseViewModel implements IFabrikantenTextureBaseViewModel {
|
|
1047
1061
|
id: number;
|
|
@@ -1117,6 +1131,20 @@ export interface IFabrikantenBCBProductToebehorenViewModel {
|
|
|
1117
1131
|
bcbeboId: number;
|
|
1118
1132
|
bcbProduct: boolean;
|
|
1119
1133
|
}
|
|
1134
|
+
export declare class FabrikantenPDFTemplateViewModel implements IFabrikantenPDFTemplateViewModel {
|
|
1135
|
+
templateId: number;
|
|
1136
|
+
loading: boolean;
|
|
1137
|
+
checked: boolean;
|
|
1138
|
+
constructor(data?: IFabrikantenPDFTemplateViewModel);
|
|
1139
|
+
init(_data?: any): void;
|
|
1140
|
+
static fromJS(data: any): FabrikantenPDFTemplateViewModel;
|
|
1141
|
+
toJSON(data?: any): any;
|
|
1142
|
+
}
|
|
1143
|
+
export interface IFabrikantenPDFTemplateViewModel {
|
|
1144
|
+
templateId: number;
|
|
1145
|
+
loading: boolean;
|
|
1146
|
+
checked: boolean;
|
|
1147
|
+
}
|
|
1120
1148
|
export declare class FabrikantenRequestModel implements IFabrikantenRequestModel {
|
|
1121
1149
|
sessionId?: string | undefined;
|
|
1122
1150
|
constructor(data?: IFabrikantenRequestModel);
|
|
@@ -1140,6 +1168,11 @@ export declare class FabrikantenSettingsViewModel implements IFabrikantenSetting
|
|
|
1140
1168
|
enableVrijeBestekTekst: boolean;
|
|
1141
1169
|
customRedirect?: string | undefined;
|
|
1142
1170
|
disableCustomFileNames: boolean;
|
|
1171
|
+
inputCodeEnabled: boolean;
|
|
1172
|
+
downloadFormEnabled: boolean;
|
|
1173
|
+
downloadForm?: FabrikantenFormViewModel | undefined;
|
|
1174
|
+
downloadCategories?: FabrikantenSettingsDownloadCategoryViewModel[] | undefined;
|
|
1175
|
+
allDownloadItems?: FabrikantenSettingsDownloadItemViewModel[] | undefined;
|
|
1143
1176
|
constructor(data?: IFabrikantenSettingsViewModel);
|
|
1144
1177
|
init(_data?: any): void;
|
|
1145
1178
|
static fromJS(data: any): FabrikantenSettingsViewModel;
|
|
@@ -1158,6 +1191,197 @@ export interface IFabrikantenSettingsViewModel {
|
|
|
1158
1191
|
enableVrijeBestekTekst: boolean;
|
|
1159
1192
|
customRedirect?: string | undefined;
|
|
1160
1193
|
disableCustomFileNames: boolean;
|
|
1194
|
+
inputCodeEnabled: boolean;
|
|
1195
|
+
downloadFormEnabled: boolean;
|
|
1196
|
+
downloadForm?: FabrikantenFormViewModel | undefined;
|
|
1197
|
+
downloadCategories?: FabrikantenSettingsDownloadCategoryViewModel[] | undefined;
|
|
1198
|
+
allDownloadItems?: FabrikantenSettingsDownloadItemViewModel[] | undefined;
|
|
1199
|
+
}
|
|
1200
|
+
export declare class FabrikantenFormViewModel implements IFabrikantenFormViewModel {
|
|
1201
|
+
id: number;
|
|
1202
|
+
name?: string | undefined;
|
|
1203
|
+
formType: FormType;
|
|
1204
|
+
formCategories?: FabrikantenFormCategoryViewModel[] | undefined;
|
|
1205
|
+
constructor(data?: IFabrikantenFormViewModel);
|
|
1206
|
+
init(_data?: any): void;
|
|
1207
|
+
static fromJS(data: any): FabrikantenFormViewModel;
|
|
1208
|
+
toJSON(data?: any): any;
|
|
1209
|
+
}
|
|
1210
|
+
export interface IFabrikantenFormViewModel {
|
|
1211
|
+
id: number;
|
|
1212
|
+
name?: string | undefined;
|
|
1213
|
+
formType: FormType;
|
|
1214
|
+
formCategories?: FabrikantenFormCategoryViewModel[] | undefined;
|
|
1215
|
+
}
|
|
1216
|
+
export declare enum FormType {
|
|
1217
|
+
DownloadForm = 1
|
|
1218
|
+
}
|
|
1219
|
+
export declare class FabrikantenFormCategoryViewModel implements IFabrikantenFormCategoryViewModel {
|
|
1220
|
+
id: number;
|
|
1221
|
+
name?: string | undefined;
|
|
1222
|
+
rows?: FabrikantenFormCategoryRowViewModel[] | undefined;
|
|
1223
|
+
constructor(data?: IFabrikantenFormCategoryViewModel);
|
|
1224
|
+
init(_data?: any): void;
|
|
1225
|
+
static fromJS(data: any): FabrikantenFormCategoryViewModel;
|
|
1226
|
+
toJSON(data?: any): any;
|
|
1227
|
+
}
|
|
1228
|
+
export interface IFabrikantenFormCategoryViewModel {
|
|
1229
|
+
id: number;
|
|
1230
|
+
name?: string | undefined;
|
|
1231
|
+
rows?: FabrikantenFormCategoryRowViewModel[] | undefined;
|
|
1232
|
+
}
|
|
1233
|
+
export declare class FabrikantenFormCategoryRowViewModel implements IFabrikantenFormCategoryRowViewModel {
|
|
1234
|
+
index: number;
|
|
1235
|
+
inputs?: FabrikantenFormInputViewModel[] | undefined;
|
|
1236
|
+
constructor(data?: IFabrikantenFormCategoryRowViewModel);
|
|
1237
|
+
init(_data?: any): void;
|
|
1238
|
+
static fromJS(data: any): FabrikantenFormCategoryRowViewModel;
|
|
1239
|
+
toJSON(data?: any): any;
|
|
1240
|
+
}
|
|
1241
|
+
export interface IFabrikantenFormCategoryRowViewModel {
|
|
1242
|
+
index: number;
|
|
1243
|
+
inputs?: FabrikantenFormInputViewModel[] | undefined;
|
|
1244
|
+
}
|
|
1245
|
+
export declare class FabrikantenFormInputViewModel implements IFabrikantenFormInputViewModel {
|
|
1246
|
+
id: number;
|
|
1247
|
+
name?: string | undefined;
|
|
1248
|
+
default?: string | undefined;
|
|
1249
|
+
value?: string | undefined;
|
|
1250
|
+
required: boolean;
|
|
1251
|
+
row: number;
|
|
1252
|
+
position: number;
|
|
1253
|
+
formInputType: FormInputType;
|
|
1254
|
+
options?: FabrikantenFormInputOptionViewModel[] | undefined;
|
|
1255
|
+
selectedOption?: FabrikantenFormInputOptionViewModel | undefined;
|
|
1256
|
+
constructor(data?: IFabrikantenFormInputViewModel);
|
|
1257
|
+
init(_data?: any): void;
|
|
1258
|
+
static fromJS(data: any): FabrikantenFormInputViewModel;
|
|
1259
|
+
toJSON(data?: any): any;
|
|
1260
|
+
}
|
|
1261
|
+
export interface IFabrikantenFormInputViewModel {
|
|
1262
|
+
id: number;
|
|
1263
|
+
name?: string | undefined;
|
|
1264
|
+
default?: string | undefined;
|
|
1265
|
+
value?: string | undefined;
|
|
1266
|
+
required: boolean;
|
|
1267
|
+
row: number;
|
|
1268
|
+
position: number;
|
|
1269
|
+
formInputType: FormInputType;
|
|
1270
|
+
options?: FabrikantenFormInputOptionViewModel[] | undefined;
|
|
1271
|
+
selectedOption?: FabrikantenFormInputOptionViewModel | undefined;
|
|
1272
|
+
}
|
|
1273
|
+
export declare enum FormInputType {
|
|
1274
|
+
Textbox = 1,
|
|
1275
|
+
Dropdown = 2,
|
|
1276
|
+
Checkbox = 3,
|
|
1277
|
+
Captcha = 4,
|
|
1278
|
+
Textarea = 5,
|
|
1279
|
+
Email = 6
|
|
1280
|
+
}
|
|
1281
|
+
export declare class FabrikantenFormInputOptionViewModel implements IFabrikantenFormInputOptionViewModel {
|
|
1282
|
+
id: number;
|
|
1283
|
+
name?: string | undefined;
|
|
1284
|
+
constructor(data?: IFabrikantenFormInputOptionViewModel);
|
|
1285
|
+
init(_data?: any): void;
|
|
1286
|
+
static fromJS(data: any): FabrikantenFormInputOptionViewModel;
|
|
1287
|
+
toJSON(data?: any): any;
|
|
1288
|
+
}
|
|
1289
|
+
export interface IFabrikantenFormInputOptionViewModel {
|
|
1290
|
+
id: number;
|
|
1291
|
+
name?: string | undefined;
|
|
1292
|
+
}
|
|
1293
|
+
export declare class FabrikantenSettingsDownloadCategoryViewModel implements IFabrikantenSettingsDownloadCategoryViewModel {
|
|
1294
|
+
name?: string | undefined;
|
|
1295
|
+
items?: FabrikantenSettingsDownloadItemViewModel[] | undefined;
|
|
1296
|
+
constructor(data?: IFabrikantenSettingsDownloadCategoryViewModel);
|
|
1297
|
+
init(_data?: any): void;
|
|
1298
|
+
static fromJS(data: any): FabrikantenSettingsDownloadCategoryViewModel;
|
|
1299
|
+
toJSON(data?: any): any;
|
|
1300
|
+
}
|
|
1301
|
+
export interface IFabrikantenSettingsDownloadCategoryViewModel {
|
|
1302
|
+
name?: string | undefined;
|
|
1303
|
+
items?: FabrikantenSettingsDownloadItemViewModel[] | undefined;
|
|
1304
|
+
}
|
|
1305
|
+
export declare class FabrikantenSettingsDownloadItemViewModel implements IFabrikantenSettingsDownloadItemViewModel {
|
|
1306
|
+
name?: string | undefined;
|
|
1307
|
+
checked: boolean;
|
|
1308
|
+
fileType?: string | undefined;
|
|
1309
|
+
model3D: boolean;
|
|
1310
|
+
loading: boolean;
|
|
1311
|
+
isNativeRevit: boolean;
|
|
1312
|
+
translationSubCategory: TranslationSubCategory;
|
|
1313
|
+
constructor(data?: IFabrikantenSettingsDownloadItemViewModel);
|
|
1314
|
+
init(_data?: any): void;
|
|
1315
|
+
static fromJS(data: any): FabrikantenSettingsDownloadItemViewModel;
|
|
1316
|
+
toJSON(data?: any): any;
|
|
1317
|
+
}
|
|
1318
|
+
export interface IFabrikantenSettingsDownloadItemViewModel {
|
|
1319
|
+
name?: string | undefined;
|
|
1320
|
+
checked: boolean;
|
|
1321
|
+
fileType?: string | undefined;
|
|
1322
|
+
model3D: boolean;
|
|
1323
|
+
loading: boolean;
|
|
1324
|
+
isNativeRevit: boolean;
|
|
1325
|
+
translationSubCategory: TranslationSubCategory;
|
|
1326
|
+
}
|
|
1327
|
+
export declare enum TranslationSubCategory {
|
|
1328
|
+
Common = 1,
|
|
1329
|
+
Name = 2,
|
|
1330
|
+
Description = 3,
|
|
1331
|
+
ProductsLoading = 4,
|
|
1332
|
+
Filters = 5,
|
|
1333
|
+
ResetFilters = 6,
|
|
1334
|
+
Back = 7,
|
|
1335
|
+
FilterMenu = 8,
|
|
1336
|
+
ActionMenu = 9,
|
|
1337
|
+
ProductSelection = 10,
|
|
1338
|
+
ProductSelectionInfo = 11,
|
|
1339
|
+
ProductSelectionBlocked = 12,
|
|
1340
|
+
MultipleVariants = 13,
|
|
1341
|
+
NotAllRequiredFilled = 14,
|
|
1342
|
+
AffectsOnlyBestek = 15,
|
|
1343
|
+
TabInformation = 16,
|
|
1344
|
+
Tab3D = 17,
|
|
1345
|
+
Tab2D = 18,
|
|
1346
|
+
TabSpecification = 19,
|
|
1347
|
+
Texture = 20,
|
|
1348
|
+
Bumpmap = 21,
|
|
1349
|
+
Toebehoren = 22,
|
|
1350
|
+
NoToebehoren = 23,
|
|
1351
|
+
SelectToebehoren = 24,
|
|
1352
|
+
Clipboard = 25,
|
|
1353
|
+
ClipboardSUF = 26,
|
|
1354
|
+
Download = 27,
|
|
1355
|
+
DownloadARKEYAdomi = 28,
|
|
1356
|
+
DownloadIFC = 29,
|
|
1357
|
+
DownloadRevit = 30,
|
|
1358
|
+
DownloadRevitPlugin = 31,
|
|
1359
|
+
Download3DAutoCADDwg = 32,
|
|
1360
|
+
Download2DAutoCADDwg = 33,
|
|
1361
|
+
Download3DDxf = 34,
|
|
1362
|
+
Download2DDxf = 35,
|
|
1363
|
+
Snede = 36,
|
|
1364
|
+
Schaal = 37,
|
|
1365
|
+
BCB = 48,
|
|
1366
|
+
STABU = 49,
|
|
1367
|
+
OSF = 50,
|
|
1368
|
+
SpecificationText = 51,
|
|
1369
|
+
InclusiveMax = 52,
|
|
1370
|
+
InclusiveMin = 53,
|
|
1371
|
+
InclusiveMinMax = 54,
|
|
1372
|
+
SnedeItem = 55,
|
|
1373
|
+
Tooltip = 56,
|
|
1374
|
+
CustomItem = 57,
|
|
1375
|
+
InputCodeLabel = 58,
|
|
1376
|
+
InputCodeOpen = 59,
|
|
1377
|
+
InputCodeGenerate = 60,
|
|
1378
|
+
Template = 61,
|
|
1379
|
+
InputCodeError = 62,
|
|
1380
|
+
Send = 63,
|
|
1381
|
+
Close = 64,
|
|
1382
|
+
Category = 65,
|
|
1383
|
+
Input = 66,
|
|
1384
|
+
Specification = 66
|
|
1161
1385
|
}
|
|
1162
1386
|
export declare class FabrikantenBestekViewModel implements IFabrikantenBestekViewModel {
|
|
1163
1387
|
checksum?: string | undefined;
|
|
@@ -1191,6 +1415,8 @@ export declare class DynamicDisplayValueViewModel implements IDynamicDisplayValu
|
|
|
1191
1415
|
name?: string | undefined;
|
|
1192
1416
|
value?: string | undefined;
|
|
1193
1417
|
hidden: boolean;
|
|
1418
|
+
filterName?: string | undefined;
|
|
1419
|
+
filterId: number;
|
|
1194
1420
|
constructor(data?: IDynamicDisplayValueViewModel);
|
|
1195
1421
|
init(_data?: any): void;
|
|
1196
1422
|
static fromJS(data: any): DynamicDisplayValueViewModel;
|
|
@@ -1200,6 +1426,8 @@ export interface IDynamicDisplayValueViewModel {
|
|
|
1200
1426
|
name?: string | undefined;
|
|
1201
1427
|
value?: string | undefined;
|
|
1202
1428
|
hidden: boolean;
|
|
1429
|
+
filterName?: string | undefined;
|
|
1430
|
+
filterId: number;
|
|
1203
1431
|
}
|
|
1204
1432
|
export declare class DynamicRangeInputViewModel implements IDynamicRangeInputViewModel {
|
|
1205
1433
|
rangeInputs?: number[] | undefined;
|
|
@@ -1359,6 +1587,7 @@ export interface IFabrikantenTextureRequestModel {
|
|
|
1359
1587
|
}
|
|
1360
1588
|
export declare class FabrikantenFileViewModel implements IFabrikantenFileViewModel {
|
|
1361
1589
|
file?: string | undefined;
|
|
1590
|
+
fileType?: string | undefined;
|
|
1362
1591
|
revitParametersNames?: string | undefined;
|
|
1363
1592
|
revitParametersValues?: string | undefined;
|
|
1364
1593
|
customRFAZip: boolean;
|
|
@@ -1370,15 +1599,16 @@ export declare class FabrikantenFileViewModel implements IFabrikantenFileViewMod
|
|
|
1370
1599
|
}
|
|
1371
1600
|
export interface IFabrikantenFileViewModel {
|
|
1372
1601
|
file?: string | undefined;
|
|
1602
|
+
fileType?: string | undefined;
|
|
1373
1603
|
revitParametersNames?: string | undefined;
|
|
1374
1604
|
revitParametersValues?: string | undefined;
|
|
1375
1605
|
customRFAZip: boolean;
|
|
1376
1606
|
rvtExtension: boolean;
|
|
1377
1607
|
}
|
|
1378
1608
|
export declare class FabrikantenFileRequestModel implements IFabrikantenFileRequestModel {
|
|
1379
|
-
|
|
1380
|
-
model3D: boolean;
|
|
1609
|
+
inputs?: FabrikantenFileRequestInputModel[] | undefined;
|
|
1381
1610
|
customBCBEBOId?: number | undefined;
|
|
1611
|
+
languageId: number;
|
|
1382
1612
|
sessionId?: string | undefined;
|
|
1383
1613
|
constructor(data?: IFabrikantenFileRequestModel);
|
|
1384
1614
|
init(_data?: any): void;
|
|
@@ -1386,11 +1616,27 @@ export declare class FabrikantenFileRequestModel implements IFabrikantenFileRequ
|
|
|
1386
1616
|
toJSON(data?: any): any;
|
|
1387
1617
|
}
|
|
1388
1618
|
export interface IFabrikantenFileRequestModel {
|
|
1389
|
-
|
|
1390
|
-
model3D: boolean;
|
|
1619
|
+
inputs?: FabrikantenFileRequestInputModel[] | undefined;
|
|
1391
1620
|
customBCBEBOId?: number | undefined;
|
|
1621
|
+
languageId: number;
|
|
1392
1622
|
sessionId?: string | undefined;
|
|
1393
1623
|
}
|
|
1624
|
+
export declare class FabrikantenFileRequestInputModel implements IFabrikantenFileRequestInputModel {
|
|
1625
|
+
fileType?: string | undefined;
|
|
1626
|
+
translationSubCategory: TranslationSubCategory;
|
|
1627
|
+
model3D: boolean;
|
|
1628
|
+
pdfTemplateId: number;
|
|
1629
|
+
constructor(data?: IFabrikantenFileRequestInputModel);
|
|
1630
|
+
init(_data?: any): void;
|
|
1631
|
+
static fromJS(data: any): FabrikantenFileRequestInputModel;
|
|
1632
|
+
toJSON(data?: any): any;
|
|
1633
|
+
}
|
|
1634
|
+
export interface IFabrikantenFileRequestInputModel {
|
|
1635
|
+
fileType?: string | undefined;
|
|
1636
|
+
translationSubCategory: TranslationSubCategory;
|
|
1637
|
+
model3D: boolean;
|
|
1638
|
+
pdfTemplateId: number;
|
|
1639
|
+
}
|
|
1394
1640
|
export declare class BCBLinkResponseModel implements IBCBLinkResponseModel {
|
|
1395
1641
|
url?: string | undefined;
|
|
1396
1642
|
constructor(data?: IBCBLinkResponseModel);
|
|
@@ -1411,6 +1657,18 @@ export declare class BCBLinkRequestModel implements IBCBLinkRequestModel {
|
|
|
1411
1657
|
export interface IBCBLinkRequestModel {
|
|
1412
1658
|
wuid?: string | undefined;
|
|
1413
1659
|
}
|
|
1660
|
+
export declare class FabrikantenSetFormRequest implements IFabrikantenSetFormRequest {
|
|
1661
|
+
sessionId?: string | undefined;
|
|
1662
|
+
formId: number;
|
|
1663
|
+
constructor(data?: IFabrikantenSetFormRequest);
|
|
1664
|
+
init(_data?: any): void;
|
|
1665
|
+
static fromJS(data: any): FabrikantenSetFormRequest;
|
|
1666
|
+
toJSON(data?: any): any;
|
|
1667
|
+
}
|
|
1668
|
+
export interface IFabrikantenSetFormRequest {
|
|
1669
|
+
sessionId?: string | undefined;
|
|
1670
|
+
formId: number;
|
|
1671
|
+
}
|
|
1414
1672
|
export declare class SetRangeInputRequest implements ISetRangeInputRequest {
|
|
1415
1673
|
sessionId?: string | undefined;
|
|
1416
1674
|
rangeInputId: number;
|
|
@@ -1561,6 +1819,50 @@ export declare class ResetAllCategoriesRequest implements IResetAllCategoriesReq
|
|
|
1561
1819
|
export interface IResetAllCategoriesRequest {
|
|
1562
1820
|
sessionId?: string | undefined;
|
|
1563
1821
|
}
|
|
1822
|
+
export declare class FabrikantenInstanceViewModel implements IFabrikantenInstanceViewModel {
|
|
1823
|
+
instanceId?: string | undefined;
|
|
1824
|
+
checksum?: string | undefined;
|
|
1825
|
+
constructor(data?: IFabrikantenInstanceViewModel);
|
|
1826
|
+
init(_data?: any): void;
|
|
1827
|
+
static fromJS(data: any): FabrikantenInstanceViewModel;
|
|
1828
|
+
toJSON(data?: any): any;
|
|
1829
|
+
}
|
|
1830
|
+
export interface IFabrikantenInstanceViewModel {
|
|
1831
|
+
instanceId?: string | undefined;
|
|
1832
|
+
checksum?: string | undefined;
|
|
1833
|
+
}
|
|
1834
|
+
export declare class FabrikantenCreateInstanceRequest implements IFabrikantenCreateInstanceRequest {
|
|
1835
|
+
sessionId?: string | undefined;
|
|
1836
|
+
constructor(data?: IFabrikantenCreateInstanceRequest);
|
|
1837
|
+
init(_data?: any): void;
|
|
1838
|
+
static fromJS(data: any): FabrikantenCreateInstanceRequest;
|
|
1839
|
+
toJSON(data?: any): any;
|
|
1840
|
+
}
|
|
1841
|
+
export interface IFabrikantenCreateInstanceRequest {
|
|
1842
|
+
sessionId?: string | undefined;
|
|
1843
|
+
}
|
|
1844
|
+
export declare class FabrikantenOpenInstanceResponse implements IFabrikantenOpenInstanceResponse {
|
|
1845
|
+
error: boolean;
|
|
1846
|
+
constructor(data?: IFabrikantenOpenInstanceResponse);
|
|
1847
|
+
init(_data?: any): void;
|
|
1848
|
+
static fromJS(data: any): FabrikantenOpenInstanceResponse;
|
|
1849
|
+
toJSON(data?: any): any;
|
|
1850
|
+
}
|
|
1851
|
+
export interface IFabrikantenOpenInstanceResponse {
|
|
1852
|
+
error: boolean;
|
|
1853
|
+
}
|
|
1854
|
+
export declare class FabrikantenOpenInstanceRequest implements IFabrikantenOpenInstanceRequest {
|
|
1855
|
+
sessionId?: string | undefined;
|
|
1856
|
+
instanceId?: string | undefined;
|
|
1857
|
+
constructor(data?: IFabrikantenOpenInstanceRequest);
|
|
1858
|
+
init(_data?: any): void;
|
|
1859
|
+
static fromJS(data: any): FabrikantenOpenInstanceRequest;
|
|
1860
|
+
toJSON(data?: any): any;
|
|
1861
|
+
}
|
|
1862
|
+
export interface IFabrikantenOpenInstanceRequest {
|
|
1863
|
+
sessionId?: string | undefined;
|
|
1864
|
+
instanceId?: string | undefined;
|
|
1865
|
+
}
|
|
1564
1866
|
export declare class FiltersViewModel implements IFiltersViewModel {
|
|
1565
1867
|
filterViewModels?: FilterViewModel[] | undefined;
|
|
1566
1868
|
constructor(data?: IFiltersViewModel);
|
|
@@ -2756,7 +3058,10 @@ export declare enum TranslationCategory {
|
|
|
2756
3058
|
FilterOption = 5,
|
|
2757
3059
|
BCBProduct = 6,
|
|
2758
3060
|
BCBProductPhoto = 7,
|
|
2759
|
-
Toebehoren = 8
|
|
3061
|
+
Toebehoren = 8,
|
|
3062
|
+
FilterCategory = 9,
|
|
3063
|
+
PDF = 10,
|
|
3064
|
+
Forms = 11
|
|
2760
3065
|
}
|
|
2761
3066
|
export declare class TranslateKeySubCategoryViewModel implements ITranslateKeySubCategoryViewModel {
|
|
2762
3067
|
translationSubCategory: TranslationSubCategory;
|
|
@@ -2772,53 +3077,6 @@ export interface ITranslateKeySubCategoryViewModel {
|
|
|
2772
3077
|
custom?: string | undefined;
|
|
2773
3078
|
keys?: TranslateKeyViewModel[] | undefined;
|
|
2774
3079
|
}
|
|
2775
|
-
export declare enum TranslationSubCategory {
|
|
2776
|
-
Common = 1,
|
|
2777
|
-
Name = 2,
|
|
2778
|
-
Description = 3,
|
|
2779
|
-
ProductsLoading = 4,
|
|
2780
|
-
Filters = 5,
|
|
2781
|
-
ResetFilters = 6,
|
|
2782
|
-
Back = 7,
|
|
2783
|
-
FilterMenu = 8,
|
|
2784
|
-
ActionMenu = 9,
|
|
2785
|
-
ProductSelection = 10,
|
|
2786
|
-
ProductSelectionInfo = 11,
|
|
2787
|
-
ProductSelectionBlocked = 12,
|
|
2788
|
-
MultipleVariants = 13,
|
|
2789
|
-
NotAllRequiredFilled = 14,
|
|
2790
|
-
AffectsOnlyBestek = 15,
|
|
2791
|
-
TabInformation = 16,
|
|
2792
|
-
Tab3D = 17,
|
|
2793
|
-
Tab2D = 18,
|
|
2794
|
-
TabSpecification = 19,
|
|
2795
|
-
Texture = 20,
|
|
2796
|
-
Bumpmap = 21,
|
|
2797
|
-
Toebehoren = 22,
|
|
2798
|
-
NoToebehoren = 23,
|
|
2799
|
-
SelectToebehoren = 24,
|
|
2800
|
-
Clipboard = 25,
|
|
2801
|
-
ClipboardSUF = 26,
|
|
2802
|
-
Download = 27,
|
|
2803
|
-
DownloadARKEYAdomi = 28,
|
|
2804
|
-
DownloadIFC = 29,
|
|
2805
|
-
DownloadRevit = 30,
|
|
2806
|
-
DownloadRevitPlugin = 31,
|
|
2807
|
-
Download3DAutoCADDwg = 32,
|
|
2808
|
-
Download2DAutoCADDwg = 33,
|
|
2809
|
-
Download3DDxf = 34,
|
|
2810
|
-
Download2DDxf = 35,
|
|
2811
|
-
Snede = 36,
|
|
2812
|
-
Schaal = 37,
|
|
2813
|
-
BCB = 48,
|
|
2814
|
-
STABU = 49,
|
|
2815
|
-
OSF = 50,
|
|
2816
|
-
SpecificationText = 51,
|
|
2817
|
-
InclusiveMax = 52,
|
|
2818
|
-
InclusiveMin = 53,
|
|
2819
|
-
InclusiveMinMax = 54,
|
|
2820
|
-
SnedeItem = 55
|
|
2821
|
-
}
|
|
2822
3080
|
export declare class TranslateKeyViewModel implements ITranslateKeyViewModel {
|
|
2823
3081
|
id: number;
|
|
2824
3082
|
extraInfo?: string | undefined;
|
|
@@ -2869,7 +3127,6 @@ export declare class BeheerLanguagesSubCategoryViewModel implements IBeheerLangu
|
|
|
2869
3127
|
translationSubCategory: TranslationSubCategory;
|
|
2870
3128
|
html: boolean;
|
|
2871
3129
|
keys?: BeheerLanguagesKeyViewModel[] | undefined;
|
|
2872
|
-
filters?: BeheerLanguagesFilterViewModel[] | undefined;
|
|
2873
3130
|
constructor(data?: IBeheerLanguagesSubCategoryViewModel);
|
|
2874
3131
|
init(_data?: any): void;
|
|
2875
3132
|
static fromJS(data: any): BeheerLanguagesSubCategoryViewModel;
|
|
@@ -2879,7 +3136,6 @@ export interface IBeheerLanguagesSubCategoryViewModel {
|
|
|
2879
3136
|
translationSubCategory: TranslationSubCategory;
|
|
2880
3137
|
html: boolean;
|
|
2881
3138
|
keys?: BeheerLanguagesKeyViewModel[] | undefined;
|
|
2882
|
-
filters?: BeheerLanguagesFilterViewModel[] | undefined;
|
|
2883
3139
|
}
|
|
2884
3140
|
export declare class BeheerLanguagesKeyViewModel implements IBeheerLanguagesKeyViewModel {
|
|
2885
3141
|
text?: string | undefined;
|
|
@@ -2909,20 +3165,6 @@ export interface IBeheerLanguagesEntryViewModel {
|
|
|
2909
3165
|
languageId: number;
|
|
2910
3166
|
changed: boolean;
|
|
2911
3167
|
}
|
|
2912
|
-
export declare class BeheerLanguagesFilterViewModel implements IBeheerLanguagesFilterViewModel {
|
|
2913
|
-
filterId: number;
|
|
2914
|
-
filter?: BeheerLanguagesKeyViewModel | undefined;
|
|
2915
|
-
options?: BeheerLanguagesKeyViewModel[] | undefined;
|
|
2916
|
-
constructor(data?: IBeheerLanguagesFilterViewModel);
|
|
2917
|
-
init(_data?: any): void;
|
|
2918
|
-
static fromJS(data: any): BeheerLanguagesFilterViewModel;
|
|
2919
|
-
toJSON(data?: any): any;
|
|
2920
|
-
}
|
|
2921
|
-
export interface IBeheerLanguagesFilterViewModel {
|
|
2922
|
-
filterId: number;
|
|
2923
|
-
filter?: BeheerLanguagesKeyViewModel | undefined;
|
|
2924
|
-
options?: BeheerLanguagesKeyViewModel[] | undefined;
|
|
2925
|
-
}
|
|
2926
3168
|
export declare class BeheerLanguageViewModel implements IBeheerLanguageViewModel {
|
|
2927
3169
|
id: number;
|
|
2928
3170
|
name?: string | undefined;
|