@bpost/bp-address-auto-complete-by-component 1.1.30 → 1.1.31

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.
@@ -3071,6 +3071,14 @@ class StreetNumberComponent {
3071
3071
  delete combined.mailBoxId; // camelCase variant (internal API field name)
3072
3072
  delete combined.pdpId;
3073
3073
  delete combined.suffixId;
3074
+ delete combined.latitude;
3075
+ delete combined.longitude;
3076
+ delete combined.perspectiveCode;
3077
+ delete combined.coordinateSystem;
3078
+ delete combined.reliability;
3079
+ delete combined.businessName;
3080
+ delete combined.listOfBoxes;
3081
+ delete combined.nis9;
3074
3082
  if (combined.geoSanction) {
3075
3083
  combined.geoSanction = combined.geoSanction.substring(0, 25);
3076
3084
  }
@@ -3411,11 +3419,15 @@ class StreetNumberComponent {
3411
3419
  const combined = { ...this.selectedAddress, ...suggestion };
3412
3420
  delete combined.latitude;
3413
3421
  delete combined.longitude;
3422
+ delete combined.perspectiveCode;
3423
+ delete combined.coordinateSystem;
3424
+ delete combined.reliability;
3425
+ delete combined.businessName;
3426
+ delete combined.listOfBoxes;
3427
+ delete combined.nis9;
3414
3428
  delete combined.mailboxId;
3415
3429
  delete combined.pdpId;
3416
3430
  delete combined.suffixId;
3417
- delete combined.pdpId;
3418
- delete combined.pdpId;
3419
3431
  if (combined.geoSanction) {
3420
3432
  combined.geoSanction = combined.geoSanction.substring(0, 25);
3421
3433
  }
@@ -4254,6 +4266,8 @@ class BoxNumberComponent {
4254
4266
  delete combined.mailBoxid; // mixed-case variant
4255
4267
  delete combined.mailBoxId; // camelCase variant (internal API field name)
4256
4268
  delete combined.suffixId;
4269
+ delete combined.businessName;
4270
+ delete combined.listOfBoxes;
4257
4271
  if (combined.geoSanction) {
4258
4272
  combined.geoSanction = combined.geoSanction.substring(0, 35);
4259
4273
  }
@@ -4262,6 +4276,12 @@ class BoxNumberComponent {
4262
4276
  if (combined.geoSanction) {
4263
4277
  combined.geoSanction = combined.geoSanction.substring(0, 25);
4264
4278
  }
4279
+ delete combined.latitude;
4280
+ delete combined.longitude;
4281
+ delete combined.perspectiveCode;
4282
+ delete combined.coordinateSystem;
4283
+ delete combined.reliability;
4284
+ delete combined.nis9;
4265
4285
  }
4266
4286
  combined.boxNumber = combined.string;
4267
4287
  combined.searchBarString = combined.string;
@@ -4505,7 +4525,10 @@ class BoxNumberComponent {
4505
4525
  modifySelectedAddress(suggestion) {
4506
4526
  const combined = { ...this.selectedAddress, ...suggestion };
4507
4527
  delete combined.mailBoxid;
4528
+ delete combined.mailBoxId;
4508
4529
  delete combined.suffixId;
4530
+ delete combined.businessName;
4531
+ delete combined.listOfBoxes;
4509
4532
  if (combined.geoSanction) {
4510
4533
  combined.geoSanction = combined.geoSanction.substring(0, 35);
4511
4534
  }
@@ -5897,6 +5920,14 @@ class LibAddressAutocompleteByComponentComponent {
5897
5920
  delete combined.mailBoxId; // camelCase variant (internal API field name)
5898
5921
  delete combined.suffixId;
5899
5922
  delete combined.isComplete;
5923
+ delete combined.latitude;
5924
+ delete combined.longitude;
5925
+ delete combined.perspectiveCode;
5926
+ delete combined.coordinateSystem;
5927
+ delete combined.reliability;
5928
+ delete combined.businessName;
5929
+ delete combined.listOfBoxes;
5930
+ delete combined.nis9;
5900
5931
  if (combined.geoSanction) {
5901
5932
  combined.geoSanction = combined.geoSanction.substring(0, 25);
5902
5933
  }
@@ -5931,6 +5962,8 @@ class LibAddressAutocompleteByComponentComponent {
5931
5962
  delete combined.mailBoxId; // camelCase variant (internal API field name)
5932
5963
  delete combined.suffixId;
5933
5964
  delete combined.isComplete;
5965
+ delete combined.businessName;
5966
+ delete combined.listOfBoxes;
5934
5967
  if (combined.geoSanction) {
5935
5968
  combined.geoSanction = combined.geoSanction.substring(0, 35);
5936
5969
  }