@vtex/faststore-plugin-buyer-portal 2.0.21 → 2.0.22

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,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [2.0.22] - 2026-08-13
11
+ ### Fixed
12
+
13
+ - Searching in the Users page did nothing — the typed term was sent as the `login` query parameter, which the BFF does not read (it understands `name`/`email`), so every search returned the unfiltered page. The term is now sent as `search`, the BFF's free-text parameter, which matches a user's login, display name or email
14
+
10
15
  ## [2.0.21] - 2026-08-13
11
16
 
12
17
  ### Changed
@@ -832,7 +837,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
832
837
  - Add CHANGELOG file
833
838
  - Add README file
834
839
 
835
- [unreleased]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v2.0.21...HEAD
840
+ [unreleased]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v2.0.22...HEAD
836
841
  [1.3.55]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v1.3.54...v1.3.55
837
842
  [1.3.54]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v1.3.53...v1.3.54
838
843
  [1.3.53]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v1.3.52...v1.3.53
@@ -930,6 +935,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
930
935
  [2.0.10]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v2.0.9...v2.0.10
931
936
  [2.0.9]: https://github.com/vtex/faststore-plugin-buyer-portal/releases/tag/2.0.9
932
937
 
938
+ [2.0.22]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v2.0.21...v2.0.22
933
939
  [2.0.21]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v2.0.20...v2.0.21
934
940
  [2.0.20]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v2.0.19...v2.0.20
935
941
  [2.0.19]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v2.0.18...v2.0.19
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vtex/faststore-plugin-buyer-portal",
3
- "version": "2.0.21",
3
+ "version": "2.0.22",
4
4
  "description": "A plugin for faststore with buyer portal",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -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.21";
25
+ export const CURRENT_VERSION = "2.0.22";
@@ -36,7 +36,7 @@ class UsersClient extends Client {
36
36
  headers: { Cookie: cookie },
37
37
  params: {
38
38
  page: index + 1,
39
- login: search,
39
+ search,
40
40
  },
41
41
  })
42
42
  )