@vtex/faststore-plugin-buyer-portal 1.3.81 → 1.3.82

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
+ ## [1.3.82] - 2026-04-29
11
+
12
+ ### Changed
13
+
14
+ - Updates the Buyer Organization Agent from `b2b-agent` to `buyer-organization-manager`
15
+
10
16
  ## [1.3.81] - 2026-04-29
11
17
 
12
18
  ### Changed
@@ -604,7 +610,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
604
610
  - Add CHANGELOG file
605
611
  - Add README file
606
612
 
607
- [unreleased]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v1.3.81...HEAD
613
+ [unreleased]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v1.3.82...HEAD
608
614
  [1.3.55]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v1.3.54...v1.3.55
609
615
  [1.3.54]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v1.3.53...v1.3.54
610
616
  [1.3.53]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v1.3.52...v1.3.53
@@ -672,6 +678,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
672
678
  [1.3.65]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v1.3.64...v1.3.65
673
679
  [1.3.64]: https://github.com/vtex/faststore-plugin-buyer-portal/releases/tag/1.3.64
674
680
  [1.3.69]: https://github.com/vtex/faststore-plugin-buyer-portal/releases/tag/1.3.69
681
+ [1.3.82]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v1.3.81...v1.3.82
675
682
  [1.3.81]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v1.3.80...v1.3.81
676
683
  [1.3.80]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v1.3.79...v1.3.80
677
684
  [1.3.79]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v1.3.78...v1.3.79
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vtex/faststore-plugin-buyer-portal",
3
- "version": "1.3.81",
3
+ "version": "1.3.82",
4
4
  "description": "A plugin for faststore with buyer portal",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/plugin.config.js CHANGED
@@ -88,8 +88,8 @@ module.exports = {
88
88
  path: "/pvt/organization-account/org-unit/[orgUnitId]",
89
89
  appLayout: false,
90
90
  },
91
- "b2b-agent": {
92
- path: "/pvt/organization-account/b2b-agent",
91
+ "buyer-organization-manager": {
92
+ path: "/pvt/organization-account/buyer-organization-manager",
93
93
  appLayout: false,
94
94
  },
95
95
  },
@@ -15,7 +15,7 @@ export const buyerPortalRoutes = {
15
15
  profileDetails: (params: { orgUnitId: string; contractId: string }) =>
16
16
  replaceParams(`${base}/profile/[orgUnitId]/[contractId]`, params),
17
17
 
18
- b2bAgent: `${base}/b2b-agent`,
18
+ b2bAgent: `${base}/buyer-organization-manager`,
19
19
 
20
20
  addresses: (params: { orgUnitId: string; contractId: string }) =>
21
21
  replaceParams(`${base}/addresses/[orgUnitId]/[contractId]`, params),
@@ -22,7 +22,7 @@ export const SCOPE_KEYS = {
22
22
  CREDIT_CARDS: "creditCards",
23
23
  } as const;
24
24
 
25
- export const CURRENT_VERSION = "1.3.81";
25
+ export const CURRENT_VERSION = "1.3.82";
26
26
 
27
27
  export const CHANGES_TIMEOUT_MESSAGE =
28
28
  "Changes may take up to 10 minutes to apply.";