fabrikantencore 2.7.4 → 2.7.6
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 +6 -1
- package/esm2022/src/app/modules/fabrikantencore/fabrikantencore.module.mjs +14 -10
- 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 +164 -60
- package/fesm2022/fabrikantencore.mjs.map +1 -1
- package/package.json +1 -1
- package/public_api.d.ts +5 -0
- package/src/app/modules/fabrikantencore/fabrikantencore.module.d.ts +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
|
@@ -1089,10 +1089,10 @@ class FabrikantenApiClient {
|
|
|
1089
1089
|
}
|
|
1090
1090
|
return of(null);
|
|
1091
1091
|
}
|
|
1092
|
-
|
|
1093
|
-
let url_ = this.baseUrl + "/api/fabrikanten/
|
|
1092
|
+
selectCategory(pSelectCategoryRequest) {
|
|
1093
|
+
let url_ = this.baseUrl + "/api/fabrikanten/selectcategory";
|
|
1094
1094
|
url_ = url_.replace(/[?&]$/, "");
|
|
1095
|
-
const content_ = JSON.stringify(
|
|
1095
|
+
const content_ = JSON.stringify(pSelectCategoryRequest);
|
|
1096
1096
|
let options_ = {
|
|
1097
1097
|
body: content_,
|
|
1098
1098
|
observe: "response",
|
|
@@ -1102,11 +1102,11 @@ class FabrikantenApiClient {
|
|
|
1102
1102
|
})
|
|
1103
1103
|
};
|
|
1104
1104
|
return this.http.request("post", url_, options_).pipe(mergeMap((response_) => {
|
|
1105
|
-
return this.
|
|
1105
|
+
return this.processSelectCategory(response_);
|
|
1106
1106
|
})).pipe(catchError((response_) => {
|
|
1107
1107
|
if (response_ instanceof HttpResponseBase) {
|
|
1108
1108
|
try {
|
|
1109
|
-
return this.
|
|
1109
|
+
return this.processSelectCategory(response_);
|
|
1110
1110
|
}
|
|
1111
1111
|
catch (e) {
|
|
1112
1112
|
return throwError(e);
|
|
@@ -1116,7 +1116,7 @@ class FabrikantenApiClient {
|
|
|
1116
1116
|
return throwError(response_);
|
|
1117
1117
|
}));
|
|
1118
1118
|
}
|
|
1119
|
-
|
|
1119
|
+
processSelectCategory(response) {
|
|
1120
1120
|
const status = response.status;
|
|
1121
1121
|
const responseBlob = response instanceof HttpResponse ? response.body :
|
|
1122
1122
|
response.error instanceof Blob ? response.error : undefined;
|
|
@@ -1138,10 +1138,10 @@ class FabrikantenApiClient {
|
|
|
1138
1138
|
}
|
|
1139
1139
|
return of(null);
|
|
1140
1140
|
}
|
|
1141
|
-
|
|
1142
|
-
let url_ = this.baseUrl + "/api/fabrikanten/
|
|
1141
|
+
selectColour(pSelectColourRequest) {
|
|
1142
|
+
let url_ = this.baseUrl + "/api/fabrikanten/selectcolour";
|
|
1143
1143
|
url_ = url_.replace(/[?&]$/, "");
|
|
1144
|
-
const content_ = JSON.stringify(
|
|
1144
|
+
const content_ = JSON.stringify(pSelectColourRequest);
|
|
1145
1145
|
let options_ = {
|
|
1146
1146
|
body: content_,
|
|
1147
1147
|
observe: "response",
|
|
@@ -1151,11 +1151,11 @@ class FabrikantenApiClient {
|
|
|
1151
1151
|
})
|
|
1152
1152
|
};
|
|
1153
1153
|
return this.http.request("post", url_, options_).pipe(mergeMap((response_) => {
|
|
1154
|
-
return this.
|
|
1154
|
+
return this.processSelectColour(response_);
|
|
1155
1155
|
})).pipe(catchError((response_) => {
|
|
1156
1156
|
if (response_ instanceof HttpResponseBase) {
|
|
1157
1157
|
try {
|
|
1158
|
-
return this.
|
|
1158
|
+
return this.processSelectColour(response_);
|
|
1159
1159
|
}
|
|
1160
1160
|
catch (e) {
|
|
1161
1161
|
return throwError(e);
|
|
@@ -1165,7 +1165,7 @@ class FabrikantenApiClient {
|
|
|
1165
1165
|
return throwError(response_);
|
|
1166
1166
|
}));
|
|
1167
1167
|
}
|
|
1168
|
-
|
|
1168
|
+
processSelectColour(response) {
|
|
1169
1169
|
const status = response.status;
|
|
1170
1170
|
const responseBlob = response instanceof HttpResponse ? response.body :
|
|
1171
1171
|
response.error instanceof Blob ? response.error : undefined;
|
|
@@ -1187,10 +1187,10 @@ class FabrikantenApiClient {
|
|
|
1187
1187
|
}
|
|
1188
1188
|
return of(null);
|
|
1189
1189
|
}
|
|
1190
|
-
|
|
1191
|
-
let url_ = this.baseUrl + "/api/fabrikanten/
|
|
1190
|
+
selectFilterCustom(pSelectFilterCustomRequest) {
|
|
1191
|
+
let url_ = this.baseUrl + "/api/fabrikanten/selectfiltercustom";
|
|
1192
1192
|
url_ = url_.replace(/[?&]$/, "");
|
|
1193
|
-
const content_ = JSON.stringify(
|
|
1193
|
+
const content_ = JSON.stringify(pSelectFilterCustomRequest);
|
|
1194
1194
|
let options_ = {
|
|
1195
1195
|
body: content_,
|
|
1196
1196
|
observe: "response",
|
|
@@ -1200,11 +1200,11 @@ class FabrikantenApiClient {
|
|
|
1200
1200
|
})
|
|
1201
1201
|
};
|
|
1202
1202
|
return this.http.request("post", url_, options_).pipe(mergeMap((response_) => {
|
|
1203
|
-
return this.
|
|
1203
|
+
return this.processSelectFilterCustom(response_);
|
|
1204
1204
|
})).pipe(catchError((response_) => {
|
|
1205
1205
|
if (response_ instanceof HttpResponseBase) {
|
|
1206
1206
|
try {
|
|
1207
|
-
return this.
|
|
1207
|
+
return this.processSelectFilterCustom(response_);
|
|
1208
1208
|
}
|
|
1209
1209
|
catch (e) {
|
|
1210
1210
|
return throwError(e);
|
|
@@ -1214,7 +1214,7 @@ class FabrikantenApiClient {
|
|
|
1214
1214
|
return throwError(response_);
|
|
1215
1215
|
}));
|
|
1216
1216
|
}
|
|
1217
|
-
|
|
1217
|
+
processSelectFilterCustom(response) {
|
|
1218
1218
|
const status = response.status;
|
|
1219
1219
|
const responseBlob = response instanceof HttpResponse ? response.body :
|
|
1220
1220
|
response.error instanceof Blob ? response.error : undefined;
|
|
@@ -1236,10 +1236,10 @@ class FabrikantenApiClient {
|
|
|
1236
1236
|
}
|
|
1237
1237
|
return of(null);
|
|
1238
1238
|
}
|
|
1239
|
-
|
|
1240
|
-
let url_ = this.baseUrl + "/api/fabrikanten/
|
|
1239
|
+
selectProduct(pSelectProductRequest) {
|
|
1240
|
+
let url_ = this.baseUrl + "/api/fabrikanten/selectproduct";
|
|
1241
1241
|
url_ = url_.replace(/[?&]$/, "");
|
|
1242
|
-
const content_ = JSON.stringify(
|
|
1242
|
+
const content_ = JSON.stringify(pSelectProductRequest);
|
|
1243
1243
|
let options_ = {
|
|
1244
1244
|
body: content_,
|
|
1245
1245
|
observe: "response",
|
|
@@ -1249,11 +1249,11 @@ class FabrikantenApiClient {
|
|
|
1249
1249
|
})
|
|
1250
1250
|
};
|
|
1251
1251
|
return this.http.request("post", url_, options_).pipe(mergeMap((response_) => {
|
|
1252
|
-
return this.
|
|
1252
|
+
return this.processSelectProduct(response_);
|
|
1253
1253
|
})).pipe(catchError((response_) => {
|
|
1254
1254
|
if (response_ instanceof HttpResponseBase) {
|
|
1255
1255
|
try {
|
|
1256
|
-
return this.
|
|
1256
|
+
return this.processSelectProduct(response_);
|
|
1257
1257
|
}
|
|
1258
1258
|
catch (e) {
|
|
1259
1259
|
return throwError(e);
|
|
@@ -1263,7 +1263,56 @@ class FabrikantenApiClient {
|
|
|
1263
1263
|
return throwError(response_);
|
|
1264
1264
|
}));
|
|
1265
1265
|
}
|
|
1266
|
-
|
|
1266
|
+
processSelectProduct(response) {
|
|
1267
|
+
const status = response.status;
|
|
1268
|
+
const responseBlob = response instanceof HttpResponse ? response.body :
|
|
1269
|
+
response.error instanceof Blob ? response.error : undefined;
|
|
1270
|
+
let _headers = {};
|
|
1271
|
+
if (response.headers) {
|
|
1272
|
+
for (let key of response.headers.keys()) {
|
|
1273
|
+
_headers[key] = response.headers.get(key);
|
|
1274
|
+
}
|
|
1275
|
+
}
|
|
1276
|
+
if (status === 200) {
|
|
1277
|
+
return blobToText(responseBlob).pipe(mergeMap((_responseText) => {
|
|
1278
|
+
return of(null);
|
|
1279
|
+
}));
|
|
1280
|
+
}
|
|
1281
|
+
else if (status !== 200 && status !== 204) {
|
|
1282
|
+
return blobToText(responseBlob).pipe(mergeMap((_responseText) => {
|
|
1283
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
1284
|
+
}));
|
|
1285
|
+
}
|
|
1286
|
+
return of(null);
|
|
1287
|
+
}
|
|
1288
|
+
removeProductSelection(pRemoveProductSelectionRequest) {
|
|
1289
|
+
let url_ = this.baseUrl + "/api/fabrikanten/removeproductselection";
|
|
1290
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
1291
|
+
const content_ = JSON.stringify(pRemoveProductSelectionRequest);
|
|
1292
|
+
let options_ = {
|
|
1293
|
+
body: content_,
|
|
1294
|
+
observe: "response",
|
|
1295
|
+
responseType: "blob",
|
|
1296
|
+
headers: new HttpHeaders({
|
|
1297
|
+
"Content-Type": "application/json",
|
|
1298
|
+
})
|
|
1299
|
+
};
|
|
1300
|
+
return this.http.request("post", url_, options_).pipe(mergeMap((response_) => {
|
|
1301
|
+
return this.processRemoveProductSelection(response_);
|
|
1302
|
+
})).pipe(catchError((response_) => {
|
|
1303
|
+
if (response_ instanceof HttpResponseBase) {
|
|
1304
|
+
try {
|
|
1305
|
+
return this.processRemoveProductSelection(response_);
|
|
1306
|
+
}
|
|
1307
|
+
catch (e) {
|
|
1308
|
+
return throwError(e);
|
|
1309
|
+
}
|
|
1310
|
+
}
|
|
1311
|
+
else
|
|
1312
|
+
return throwError(response_);
|
|
1313
|
+
}));
|
|
1314
|
+
}
|
|
1315
|
+
processRemoveProductSelection(response) {
|
|
1267
1316
|
const status = response.status;
|
|
1268
1317
|
const responseBlob = response instanceof HttpResponse ? response.body :
|
|
1269
1318
|
response.error instanceof Blob ? response.error : undefined;
|
|
@@ -6344,6 +6393,7 @@ class FabrikantenFilterViewModel {
|
|
|
6344
6393
|
selectedOptions;
|
|
6345
6394
|
selectedColour;
|
|
6346
6395
|
selectedColourValue;
|
|
6396
|
+
selectedFilterCustom;
|
|
6347
6397
|
options;
|
|
6348
6398
|
descriptions;
|
|
6349
6399
|
constructor(data) {
|
|
@@ -6375,6 +6425,7 @@ class FabrikantenFilterViewModel {
|
|
|
6375
6425
|
}
|
|
6376
6426
|
this.selectedColour = _data["selectedColour"];
|
|
6377
6427
|
this.selectedColourValue = _data["selectedColourValue"];
|
|
6428
|
+
this.selectedFilterCustom = _data["selectedFilterCustom"];
|
|
6378
6429
|
if (Array.isArray(_data["options"])) {
|
|
6379
6430
|
this.options = [];
|
|
6380
6431
|
for (let item of _data["options"])
|
|
@@ -6414,6 +6465,7 @@ class FabrikantenFilterViewModel {
|
|
|
6414
6465
|
}
|
|
6415
6466
|
data["selectedColour"] = this.selectedColour;
|
|
6416
6467
|
data["selectedColourValue"] = this.selectedColourValue;
|
|
6468
|
+
data["selectedFilterCustom"] = this.selectedFilterCustom;
|
|
6417
6469
|
if (Array.isArray(this.options)) {
|
|
6418
6470
|
data["options"] = [];
|
|
6419
6471
|
for (let item of this.options)
|
|
@@ -7647,9 +7699,10 @@ class SelectBCBProductRequest {
|
|
|
7647
7699
|
return data;
|
|
7648
7700
|
}
|
|
7649
7701
|
}
|
|
7650
|
-
class
|
|
7702
|
+
class SelectCategoryRequest {
|
|
7651
7703
|
sessionId;
|
|
7652
|
-
|
|
7704
|
+
categoryLayer;
|
|
7705
|
+
categoryId;
|
|
7653
7706
|
constructor(data) {
|
|
7654
7707
|
if (data) {
|
|
7655
7708
|
for (var property in data) {
|
|
@@ -7661,24 +7714,29 @@ class SelectProductRequest {
|
|
|
7661
7714
|
init(_data) {
|
|
7662
7715
|
if (_data) {
|
|
7663
7716
|
this.sessionId = _data["sessionId"];
|
|
7664
|
-
this.
|
|
7717
|
+
this.categoryLayer = _data["categoryLayer"];
|
|
7718
|
+
this.categoryId = _data["categoryId"];
|
|
7665
7719
|
}
|
|
7666
7720
|
}
|
|
7667
7721
|
static fromJS(data) {
|
|
7668
7722
|
data = typeof data === 'object' ? data : {};
|
|
7669
|
-
let result = new
|
|
7723
|
+
let result = new SelectCategoryRequest();
|
|
7670
7724
|
result.init(data);
|
|
7671
7725
|
return result;
|
|
7672
7726
|
}
|
|
7673
7727
|
toJSON(data) {
|
|
7674
7728
|
data = typeof data === 'object' ? data : {};
|
|
7675
7729
|
data["sessionId"] = this.sessionId;
|
|
7676
|
-
data["
|
|
7730
|
+
data["categoryLayer"] = this.categoryLayer;
|
|
7731
|
+
data["categoryId"] = this.categoryId;
|
|
7677
7732
|
return data;
|
|
7678
7733
|
}
|
|
7679
7734
|
}
|
|
7680
|
-
class
|
|
7735
|
+
class SelectColourRequest {
|
|
7681
7736
|
sessionId;
|
|
7737
|
+
filterId;
|
|
7738
|
+
colourName;
|
|
7739
|
+
colourValue;
|
|
7682
7740
|
constructor(data) {
|
|
7683
7741
|
if (data) {
|
|
7684
7742
|
for (var property in data) {
|
|
@@ -7690,24 +7748,30 @@ class RemoveProductSelectionRequest {
|
|
|
7690
7748
|
init(_data) {
|
|
7691
7749
|
if (_data) {
|
|
7692
7750
|
this.sessionId = _data["sessionId"];
|
|
7751
|
+
this.filterId = _data["filterId"];
|
|
7752
|
+
this.colourName = _data["colourName"];
|
|
7753
|
+
this.colourValue = _data["colourValue"];
|
|
7693
7754
|
}
|
|
7694
7755
|
}
|
|
7695
7756
|
static fromJS(data) {
|
|
7696
7757
|
data = typeof data === 'object' ? data : {};
|
|
7697
|
-
let result = new
|
|
7758
|
+
let result = new SelectColourRequest();
|
|
7698
7759
|
result.init(data);
|
|
7699
7760
|
return result;
|
|
7700
7761
|
}
|
|
7701
7762
|
toJSON(data) {
|
|
7702
7763
|
data = typeof data === 'object' ? data : {};
|
|
7703
7764
|
data["sessionId"] = this.sessionId;
|
|
7765
|
+
data["filterId"] = this.filterId;
|
|
7766
|
+
data["colourName"] = this.colourName;
|
|
7767
|
+
data["colourValue"] = this.colourValue;
|
|
7704
7768
|
return data;
|
|
7705
7769
|
}
|
|
7706
7770
|
}
|
|
7707
|
-
class
|
|
7771
|
+
class SelectFilterCustomRequest {
|
|
7708
7772
|
sessionId;
|
|
7709
|
-
|
|
7710
|
-
|
|
7773
|
+
filterId;
|
|
7774
|
+
customValue;
|
|
7711
7775
|
constructor(data) {
|
|
7712
7776
|
if (data) {
|
|
7713
7777
|
for (var property in data) {
|
|
@@ -7719,29 +7783,27 @@ class SelectCategoryRequest {
|
|
|
7719
7783
|
init(_data) {
|
|
7720
7784
|
if (_data) {
|
|
7721
7785
|
this.sessionId = _data["sessionId"];
|
|
7722
|
-
this.
|
|
7723
|
-
this.
|
|
7786
|
+
this.filterId = _data["filterId"];
|
|
7787
|
+
this.customValue = _data["customValue"];
|
|
7724
7788
|
}
|
|
7725
7789
|
}
|
|
7726
7790
|
static fromJS(data) {
|
|
7727
7791
|
data = typeof data === 'object' ? data : {};
|
|
7728
|
-
let result = new
|
|
7792
|
+
let result = new SelectFilterCustomRequest();
|
|
7729
7793
|
result.init(data);
|
|
7730
7794
|
return result;
|
|
7731
7795
|
}
|
|
7732
7796
|
toJSON(data) {
|
|
7733
7797
|
data = typeof data === 'object' ? data : {};
|
|
7734
7798
|
data["sessionId"] = this.sessionId;
|
|
7735
|
-
data["
|
|
7736
|
-
data["
|
|
7799
|
+
data["filterId"] = this.filterId;
|
|
7800
|
+
data["customValue"] = this.customValue;
|
|
7737
7801
|
return data;
|
|
7738
7802
|
}
|
|
7739
7803
|
}
|
|
7740
|
-
class
|
|
7804
|
+
class SelectProductRequest {
|
|
7741
7805
|
sessionId;
|
|
7742
|
-
|
|
7743
|
-
colourName;
|
|
7744
|
-
colourValue;
|
|
7806
|
+
productId;
|
|
7745
7807
|
constructor(data) {
|
|
7746
7808
|
if (data) {
|
|
7747
7809
|
for (var property in data) {
|
|
@@ -7753,23 +7815,46 @@ class SelectColourRequest {
|
|
|
7753
7815
|
init(_data) {
|
|
7754
7816
|
if (_data) {
|
|
7755
7817
|
this.sessionId = _data["sessionId"];
|
|
7756
|
-
this.
|
|
7757
|
-
this.colourName = _data["colourName"];
|
|
7758
|
-
this.colourValue = _data["colourValue"];
|
|
7818
|
+
this.productId = _data["productId"];
|
|
7759
7819
|
}
|
|
7760
7820
|
}
|
|
7761
7821
|
static fromJS(data) {
|
|
7762
7822
|
data = typeof data === 'object' ? data : {};
|
|
7763
|
-
let result = new
|
|
7823
|
+
let result = new SelectProductRequest();
|
|
7824
|
+
result.init(data);
|
|
7825
|
+
return result;
|
|
7826
|
+
}
|
|
7827
|
+
toJSON(data) {
|
|
7828
|
+
data = typeof data === 'object' ? data : {};
|
|
7829
|
+
data["sessionId"] = this.sessionId;
|
|
7830
|
+
data["productId"] = this.productId;
|
|
7831
|
+
return data;
|
|
7832
|
+
}
|
|
7833
|
+
}
|
|
7834
|
+
class RemoveProductSelectionRequest {
|
|
7835
|
+
sessionId;
|
|
7836
|
+
constructor(data) {
|
|
7837
|
+
if (data) {
|
|
7838
|
+
for (var property in data) {
|
|
7839
|
+
if (data.hasOwnProperty(property))
|
|
7840
|
+
this[property] = data[property];
|
|
7841
|
+
}
|
|
7842
|
+
}
|
|
7843
|
+
}
|
|
7844
|
+
init(_data) {
|
|
7845
|
+
if (_data) {
|
|
7846
|
+
this.sessionId = _data["sessionId"];
|
|
7847
|
+
}
|
|
7848
|
+
}
|
|
7849
|
+
static fromJS(data) {
|
|
7850
|
+
data = typeof data === 'object' ? data : {};
|
|
7851
|
+
let result = new RemoveProductSelectionRequest();
|
|
7764
7852
|
result.init(data);
|
|
7765
7853
|
return result;
|
|
7766
7854
|
}
|
|
7767
7855
|
toJSON(data) {
|
|
7768
7856
|
data = typeof data === 'object' ? data : {};
|
|
7769
7857
|
data["sessionId"] = this.sessionId;
|
|
7770
|
-
data["filterId"] = this.filterId;
|
|
7771
|
-
data["colourName"] = this.colourName;
|
|
7772
|
-
data["colourValue"] = this.colourValue;
|
|
7773
7858
|
return data;
|
|
7774
7859
|
}
|
|
7775
7860
|
}
|
|
@@ -12443,6 +12528,21 @@ class FabrikantenService {
|
|
|
12443
12528
|
ChangeDetectorRef.detectChanges();
|
|
12444
12529
|
});
|
|
12445
12530
|
}
|
|
12531
|
+
SelectFilterCustom(filterid, customvalue, ChangeDetectorRef) {
|
|
12532
|
+
this.Loading = true;
|
|
12533
|
+
ChangeDetectorRef.detectChanges();
|
|
12534
|
+
var request = new SelectFilterCustomRequest();
|
|
12535
|
+
request.sessionId = this.FabrikantenViewModel.sessionId;
|
|
12536
|
+
request.customValue = customvalue;
|
|
12537
|
+
request.filterId = filterid;
|
|
12538
|
+
this.FabrikantenApiClient.selectFilterCustom(request).subscribe(() => {
|
|
12539
|
+
this.ReloadModel(ChangeDetectorRef);
|
|
12540
|
+
}, (error) => {
|
|
12541
|
+
alert('An unexpected error occured');
|
|
12542
|
+
this.Loading = false;
|
|
12543
|
+
ChangeDetectorRef.detectChanges();
|
|
12544
|
+
});
|
|
12545
|
+
}
|
|
12446
12546
|
SetRangeInput(rangeinputid, value, ChangeDetectorRef) {
|
|
12447
12547
|
this.Loading = true;
|
|
12448
12548
|
ChangeDetectorRef.detectChanges();
|
|
@@ -19070,14 +19170,16 @@ class FabrikantenCoreModule {
|
|
|
19070
19170
|
MatLegacyTabsModule,
|
|
19071
19171
|
MatLegacyProgressSpinnerModule,
|
|
19072
19172
|
MatLegacySelectModule,
|
|
19073
|
-
MatLegacySnackBarModule, i1$1.RouterModule], exports: [
|
|
19173
|
+
MatLegacySnackBarModule, i1$1.RouterModule], exports: [FabActionmenuComponent,
|
|
19074
19174
|
FabCategoryNavigatorComponent,
|
|
19075
|
-
|
|
19175
|
+
FabFilterCustomComponent,
|
|
19176
|
+
FabFiltersComponent,
|
|
19076
19177
|
FabFiltersInputComponent,
|
|
19077
|
-
FabProductBestekComponent,
|
|
19078
|
-
FabSelectBcbproductComponent,
|
|
19079
19178
|
FabLoaderComponent,
|
|
19080
|
-
|
|
19179
|
+
FabWebglViewerComponent,
|
|
19180
|
+
FabSvgViewerComponent,
|
|
19181
|
+
FabProductBestekComponent,
|
|
19182
|
+
FabSelectBcbproductComponent] });
|
|
19081
19183
|
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.0.1", ngImport: i0, type: FabrikantenCoreModule, providers: [
|
|
19082
19184
|
NavigateService,
|
|
19083
19185
|
AuthenticationService,
|
|
@@ -19284,14 +19386,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.1", ngImpor
|
|
|
19284
19386
|
{ provide: HTTP_INTERCEPTORS, useClass: ErrorInterceptor, multi: true }
|
|
19285
19387
|
],
|
|
19286
19388
|
exports: [
|
|
19287
|
-
FabFiltersComponent,
|
|
19288
|
-
FabCategoryNavigatorComponent,
|
|
19289
19389
|
FabActionmenuComponent,
|
|
19390
|
+
FabCategoryNavigatorComponent,
|
|
19391
|
+
FabFilterCustomComponent,
|
|
19392
|
+
FabFiltersComponent,
|
|
19290
19393
|
FabFiltersInputComponent,
|
|
19394
|
+
FabLoaderComponent,
|
|
19395
|
+
FabWebglViewerComponent,
|
|
19396
|
+
FabSvgViewerComponent,
|
|
19291
19397
|
FabProductBestekComponent,
|
|
19292
19398
|
FabSelectBcbproductComponent,
|
|
19293
|
-
FabLoaderComponent,
|
|
19294
|
-
FabFilterCustomComponent
|
|
19295
19399
|
]
|
|
19296
19400
|
}]
|
|
19297
19401
|
}] });
|
|
@@ -19300,5 +19404,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.1", ngImpor
|
|
|
19300
19404
|
* Generated bundle index. Do not edit.
|
|
19301
19405
|
*/
|
|
19302
19406
|
|
|
19303
|
-
export { API_BASE_URL, ApiException, BCBEBODOViewModel, BCBEBOFilterOptionViewModel, BCBEBOViewModel, BCBEigenschapBereikViewModel, BCBEigenschapLocation, BCBEigenschapOptieCategoryViewModel, BCBEigenschapOptieFilterOptionViewModel, BCBEigenschapOptieViewModel, BCBEigenschapRangeInputModel, BCBEigenschapToebehorenViewModel, BCBEigenschapViewModel, BCBImportEigenschap, BCBImportOpbouw, BCBImportOpenRequest, BCBImportOpenResponse, BCBImportOpenTempDORequest, BCBImportOpenTempRequest, BCBImportProductRequest, BCBImportProductResponse, BCBImportSetValueViewModel, BCBImportSetViewModel, BCBImportSetsViewModel, BCBLinkRequestModel, BCBLinkResponseModel, BCBOpbouwViewModel, BCBProductViewModel, BeheerLanguageViewModel, BeheerLanguagesCategoryViewModel, BeheerLanguagesEntryViewModel, BeheerLanguagesFilterViewModel, BeheerLanguagesKeyViewModel, BeheerLanguagesSubCategoryViewModel, BeheerLanguagesViewModel, CategoriesApiClient, CategoriesOverviewCategorieViewModel, CategoriesOverviewViewModel, CategoriesViewModel, CategoryViewModel, ChangeImportSetRequest, ChangeOrderInputsRequest, ClearCategoryRequest, ConnectBCBEBODORequest, ConnectBCBEigenschapRangeInputRequest, ConnectBCBEigenschapRangeInputResponse, ConnectBCBEigenschapRequest, ConnectEBODOCategoryRequest, ConnectEBODOCategoryResponse, ConnectEigenschapOptieRequest, ConnectOpbouwRequest, CreateCategoryRequest, CreateCategoryResponse, CreateExportRequest, CreateExportResponse, CreateFilterOptionRequest, CreateFilterOptionResponse, CreateFilterRequest, CreateFilterResponse, CreateLanguageRequest, CreateUserModel, DeeplinkFilterViewModel, DeeplinkProductViewModel, DeeplinkRequest, DeeplinkViewModel, DeleteUserModel, DynamicDisplayValueViewModel, DynamicFilterViewModel, DynamicFiltersViewModel, DynamicRangeInputViewModel, EBOConnectRequestModel, EBOKoppelApiClient, EBOKoppelEBOCategoryViewModel, EBOKoppelEBOFilterOptionViewModel, EBOKoppelEBOViewModel, EBOKoppelNaamViewModel, EBOKoppelTypeViewModel, EBOKoppelViewModel, EditUserModel, FabActionmenuComponent, FabCategoryNavigatorComponent, FabFilterCustomComponent, FabFiltersComponent, FabFiltersInputComponent, FabLoaderComponent, FabProductBestekComponent, FabSelectBcbproductComponent, Fabrikanten3DRequestModel, Fabrikanten3DViewModel, FabrikantenApiClient, FabrikantenBCBProductAfbeeldingViewModel, FabrikantenBCBProductToebehorenViewModel, FabrikantenBCBProductViewModel, FabrikantenBestekRequestModel, FabrikantenBestekViewModel, FabrikantenCategoryLayerViewModel, FabrikantenCategoryViewModel, FabrikantenCoreModule, FabrikantenFileRequestModel, FabrikantenFileViewModel, FabrikantenFilterCategoryViewModel, FabrikantenFilterDescriptionViewModel, FabrikantenFilterOptionViewModel, FabrikantenFilterViewModel, FabrikantenInputViewModel, FabrikantenProductViewModel, FabrikantenRangeInputViewModel, FabrikantenRequestModel, FabrikantenSVGRequestModel, FabrikantenSVGViewModel, FabrikantenService, FabrikantenSettingsViewModel, FabrikantenTextureBaseViewModel, FabrikantenTextureRequestModel, FabrikantenTextureViewModel, FabrikantenViewModel, FilterOptionFilterOptionRequiredViewModel, FilterOptionRequiredType, FilterOptionRequiredViewModel, FilterOptionViewModel, FilterRequiredViewModel, FilterType, FilterViewModel, FiltersApiClient, FiltersViewModel, GetProductRequest, GetProductsViewModel, IgnoreBCBEigenschapRequest, IgnoreOpbouwRequest, ImportApiClient, InputViewModel, InputsViewModel, KoppelProductsRequestModel, LanguageViewModel, LanguagesViewModel, LoginIPResponseModel, LoginRequestModel, LoginResponseModel, NewProductRequestModel, NewProductResponseModel, ProductViewModel, ProductViewModel2, ProductsApiClient, ProductsViewModel, ProductsViewModelRequest, ProjectSettingApiClient, ProjectSettingPipelineStepViewModel, ProjectSettingType, ProjectSettingViewModel, ProjectSettingsCategoryViewModel, ProjectSettingsViewModel, REST3DViewModel, RESTApiClient, RESTBestekViewModel, RESTFileRequestModel, RESTFileViewModel, RESTParameterViewModel, RESTRequestModel, RESTSVGRequestModel, RESTSVGViewModel, RangeInputFilterOptionRequiredViewModel, RangeInputType, RangeInputViewModel, RangeInputsViewModel, ReadExportRequest, RemoveFilterOptionRequest, RemoveProductSelectionRequest, ResetAllCategoriesRequest, ResetAllFiltersRequest, ResetCategoryLayerRequest, ResetFilterRequest, ResetImportRequestModel, SVGService, SaveFilterOptionRequest, SaveFilterRequest, SaveImportSetRequest, SaveProductViewModel, SaveRangeInputRequest, SearchProductsApiClient, SearchProductsRequestModel, SearchProductsResponseModel, SecurityApiClient, SelectBCBProductRequest, SelectCategoryRequest, SelectColourRequest, SelectFilterOptionRequest, SelectProductRequest, SetFilterOptionRequiredRequest, SetFilterRequiredRequest, SetProjectSettingRequestModel, SetProjectSettingResponseModel, SetRangeInputRequest, SortFilterRequest, TemplateComponentService, TranslateApiClient, TranslateKeyCategoryViewModel, TranslateKeySubCategoryViewModel, TranslateKeyViewModel, TranslateService, TranslationCategory, TranslationSubCategory, UserResponseModel, UserRole, UserViewModel, UsersViewModel, WizardEBODOViewModel, WizardEBOViewModel };
|
|
19407
|
+
export { API_BASE_URL, ApiException, BCBEBODOViewModel, BCBEBOFilterOptionViewModel, BCBEBOViewModel, BCBEigenschapBereikViewModel, BCBEigenschapLocation, BCBEigenschapOptieCategoryViewModel, BCBEigenschapOptieFilterOptionViewModel, BCBEigenschapOptieViewModel, BCBEigenschapRangeInputModel, BCBEigenschapToebehorenViewModel, BCBEigenschapViewModel, BCBImportEigenschap, BCBImportOpbouw, BCBImportOpenRequest, BCBImportOpenResponse, BCBImportOpenTempDORequest, BCBImportOpenTempRequest, BCBImportProductRequest, BCBImportProductResponse, BCBImportSetValueViewModel, BCBImportSetViewModel, BCBImportSetsViewModel, BCBLinkRequestModel, BCBLinkResponseModel, BCBOpbouwViewModel, BCBProductViewModel, BeheerLanguageViewModel, BeheerLanguagesCategoryViewModel, BeheerLanguagesEntryViewModel, BeheerLanguagesFilterViewModel, BeheerLanguagesKeyViewModel, BeheerLanguagesSubCategoryViewModel, BeheerLanguagesViewModel, BestekService, CategoriesApiClient, CategoriesOverviewCategorieViewModel, CategoriesOverviewViewModel, CategoriesViewModel, CategoryViewModel, ChangeImportSetRequest, ChangeOrderInputsRequest, ClearCategoryRequest, ConnectBCBEBODORequest, ConnectBCBEigenschapRangeInputRequest, ConnectBCBEigenschapRangeInputResponse, ConnectBCBEigenschapRequest, ConnectEBODOCategoryRequest, ConnectEBODOCategoryResponse, ConnectEigenschapOptieRequest, ConnectOpbouwRequest, CreateCategoryRequest, CreateCategoryResponse, CreateExportRequest, CreateExportResponse, CreateFilterOptionRequest, CreateFilterOptionResponse, CreateFilterRequest, CreateFilterResponse, CreateLanguageRequest, CreateUserModel, DeeplinkFilterViewModel, DeeplinkProductViewModel, DeeplinkRequest, DeeplinkViewModel, DeleteUserModel, DynamicDisplayValueViewModel, DynamicFilterViewModel, DynamicFiltersViewModel, DynamicRangeInputViewModel, EBOConnectRequestModel, EBOKoppelApiClient, EBOKoppelEBOCategoryViewModel, EBOKoppelEBOFilterOptionViewModel, EBOKoppelEBOViewModel, EBOKoppelNaamViewModel, EBOKoppelTypeViewModel, EBOKoppelViewModel, EditUserModel, FabActionmenuComponent, FabCategoryNavigatorComponent, FabFilterCustomComponent, FabFiltersComponent, FabFiltersInputComponent, FabLoaderComponent, FabProductBestekComponent, FabSelectBcbproductComponent, FabSvgViewerComponent, FabWebglViewerComponent, Fabrikanten3DRequestModel, Fabrikanten3DViewModel, FabrikantenApiClient, FabrikantenBCBProductAfbeeldingViewModel, FabrikantenBCBProductToebehorenViewModel, FabrikantenBCBProductViewModel, FabrikantenBestekRequestModel, FabrikantenBestekViewModel, FabrikantenCategoryLayerViewModel, FabrikantenCategoryViewModel, FabrikantenCoreModule, FabrikantenFileRequestModel, FabrikantenFileViewModel, FabrikantenFilterCategoryViewModel, FabrikantenFilterDescriptionViewModel, FabrikantenFilterOptionViewModel, FabrikantenFilterViewModel, FabrikantenInputViewModel, FabrikantenProductViewModel, FabrikantenRangeInputViewModel, FabrikantenRequestModel, FabrikantenSVGRequestModel, FabrikantenSVGViewModel, FabrikantenService, FabrikantenSettingsViewModel, FabrikantenTextureBaseViewModel, FabrikantenTextureRequestModel, FabrikantenTextureViewModel, FabrikantenViewModel, FilterOptionFilterOptionRequiredViewModel, FilterOptionRequiredType, FilterOptionRequiredViewModel, FilterOptionViewModel, FilterRequiredViewModel, FilterType, FilterViewModel, FiltersApiClient, FiltersViewModel, GetProductRequest, GetProductsViewModel, IgnoreBCBEigenschapRequest, IgnoreOpbouwRequest, ImportApiClient, InputViewModel, InputsViewModel, KoppelProductsRequestModel, LanguageViewModel, LanguagesViewModel, LoginIPResponseModel, LoginRequestModel, LoginResponseModel, MobileService, NewProductRequestModel, NewProductResponseModel, ProductViewModel, ProductViewModel2, ProductsApiClient, ProductsViewModel, ProductsViewModelRequest, ProjectSettingApiClient, ProjectSettingPipelineStepViewModel, ProjectSettingType, ProjectSettingViewModel, ProjectSettingsCategoryViewModel, ProjectSettingsViewModel, REST3DViewModel, RESTApiClient, RESTBestekViewModel, RESTFileRequestModel, RESTFileViewModel, RESTParameterViewModel, RESTRequestModel, RESTSVGRequestModel, RESTSVGViewModel, RangeInputFilterOptionRequiredViewModel, RangeInputType, RangeInputViewModel, RangeInputsViewModel, ReadExportRequest, RemoveFilterOptionRequest, RemoveProductSelectionRequest, ResetAllCategoriesRequest, ResetAllFiltersRequest, ResetCategoryLayerRequest, ResetFilterRequest, ResetImportRequestModel, SVGService, SaveFilterOptionRequest, SaveFilterRequest, SaveImportSetRequest, SaveProductViewModel, SaveRangeInputRequest, SearchProductsApiClient, SearchProductsRequestModel, SearchProductsResponseModel, SecurityApiClient, SelectBCBProductRequest, SelectCategoryRequest, SelectColourRequest, SelectFilterCustomRequest, SelectFilterOptionRequest, SelectProductRequest, SetFilterOptionRequiredRequest, SetFilterRequiredRequest, SetProjectSettingRequestModel, SetProjectSettingResponseModel, SetRangeInputRequest, SortFilterRequest, TemplateComponentService, TranslateApiClient, TranslateKeyCategoryViewModel, TranslateKeySubCategoryViewModel, TranslateKeyViewModel, TranslateService, TranslationCategory, TranslationSubCategory, UserResponseModel, UserRole, UserViewModel, UsersViewModel, WebGLService, WizardEBODOViewModel, WizardEBOViewModel };
|
|
19304
19408
|
//# sourceMappingURL=fabrikantencore.mjs.map
|