@vtex/faststore-plugin-buyer-portal 2.0.2 → 2.0.3

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.3] - 2026-06-04
11
+
12
+ ### Fixed
13
+ - Turn filterByUnit flag to false on create an accounting field value to search for all all units in a contract.
14
+
10
15
  ## [2.0.2] - 2026-06-03
11
16
 
12
17
  ### Fixed
@@ -684,7 +689,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
684
689
  - Add CHANGELOG file
685
690
  - Add README file
686
691
 
687
- [unreleased]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v2.0.2...HEAD
692
+ [unreleased]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v2.0.3...HEAD
688
693
  [1.3.55]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v1.3.54...v1.3.55
689
694
  [1.3.54]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v1.3.53...v1.3.54
690
695
  [1.3.53]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v1.3.52...v1.3.53
@@ -771,5 +776,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
771
776
  [1.3.87]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v1.3.86...v1.3.87
772
777
  [1.3.86]: https://github.com/vtex/faststore-plugin-buyer-portal/releases/tag/1.3.86
773
778
 
779
+ [2.0.3]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v2.0.2...v2.0.3
774
780
  [2.0.2]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v2.0.1...v2.0.2
775
781
  [2.0.1]: https://github.com/vtex/faststore-plugin-buyer-portal/releases/tag/2.0.1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vtex/faststore-plugin-buyer-portal",
3
- "version": "2.0.2",
3
+ "version": "2.0.3",
4
4
  "description": "A plugin for faststore with buyer portal",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -135,6 +135,7 @@ export const CreateAccountingValueDrawer = ({
135
135
  orgUnitId,
136
136
  page: 1,
137
137
  search,
138
+ filterByUnit: false,
138
139
  });
139
140
 
140
141
  const handleCreateValue = (formData: AccountingValueFormData) => {
@@ -22,7 +22,7 @@ export const SCOPE_KEYS = {
22
22
  CREDIT_CARDS: "creditCards",
23
23
  } as const;
24
24
 
25
- export const CURRENT_VERSION = "2.0.2";
25
+ export const CURRENT_VERSION = "2.0.3";
26
26
 
27
27
  export const CHANGES_TIMEOUT_MESSAGE =
28
28
  "Changes may take up to 10 minutes to apply.";