@vtex/faststore-plugin-buyer-portal 2.0.14 → 2.0.15

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/CHANGELOG.md CHANGED
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [2.0.15] - 2026-07-27
11
+
12
+ ### Fixed
13
+
14
+ - Address details page showed the raw i18n key `shared.labels.streetAddress2` instead of "Apt, Suite, Building"; the label mapping now uses `shared.labels.aptSuiteBuilding`
15
+
10
16
  ## [2.0.14] - 2026-07-21
11
17
 
12
18
  ### Added
@@ -786,7 +792,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
786
792
  - Add CHANGELOG file
787
793
  - Add README file
788
794
 
789
- [unreleased]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v2.0.14...HEAD
795
+ [unreleased]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v2.0.15...HEAD
790
796
  [1.3.55]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v1.3.54...v1.3.55
791
797
  [1.3.54]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v1.3.53...v1.3.54
792
798
  [1.3.53]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v1.3.52...v1.3.53
@@ -884,6 +890,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
884
890
  [2.0.10]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v2.0.9...v2.0.10
885
891
  [2.0.9]: https://github.com/vtex/faststore-plugin-buyer-portal/releases/tag/2.0.9
886
892
 
893
+ [2.0.15]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v2.0.14...v2.0.15
887
894
  [2.0.14]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v2.0.13...v2.0.14
888
895
  [2.0.13]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v2.0.12...v2.0.13
889
896
  [2.0.12]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v2.0.11...v2.0.12
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vtex/faststore-plugin-buyer-portal",
3
- "version": "2.0.14",
3
+ "version": "2.0.15",
4
4
  "description": "A plugin for faststore with buyer portal",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -2,7 +2,7 @@ export const addressLabelToPropMapping = {
2
2
  name: "shared.labels.addressName",
3
3
  streetAddress: "shared.labels.streetAddress",
4
4
  streetNumber: "shared.labels.streetNumber",
5
- streetAddress2: "shared.labels.streetAddress2",
5
+ streetAddress2: "shared.labels.aptSuiteBuilding",
6
6
  country: "shared.labels.country",
7
7
  zip: "shared.labels.postalCode",
8
8
  state: "shared.labels.state",
@@ -22,4 +22,4 @@ export const SCOPE_KEYS = {
22
22
  CREDIT_CARDS: "creditCards",
23
23
  } as const;
24
24
 
25
- export const CURRENT_VERSION = "2.0.14";
25
+ export const CURRENT_VERSION = "2.0.15";