@vtex/faststore-plugin-buyer-portal 1.3.36 → 1.3.37
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.37] - 2025-12-04
|
|
11
|
+
|
|
12
|
+
## Changed
|
|
13
|
+
|
|
14
|
+
- Allow Credit Card CVV to accept 4 digits
|
|
15
|
+
|
|
10
16
|
## [1.3.36] - 2025-12-04
|
|
11
17
|
|
|
12
18
|
### Added
|
|
@@ -333,7 +339,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
333
339
|
- Add CHANGELOG file
|
|
334
340
|
- Add README file
|
|
335
341
|
|
|
336
|
-
[unreleased]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v1.3.
|
|
342
|
+
[unreleased]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v1.3.37...HEAD
|
|
337
343
|
[1.2.3]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v1.2.2...1.2.3
|
|
338
344
|
[1.2.3]: https://github.com/vtex/faststore-plugin-buyer-portal/releases/tag/1.2.3
|
|
339
345
|
[1.2.4]: https://github.com/vtex/faststore-plugin-buyer-portal/releases/tag/1.2.4
|
|
@@ -375,5 +381,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
375
381
|
> > > > > > > main
|
|
376
382
|
> > > > > > > [1.3.11]: https://github.com/vtex/faststore-plugin-buyer-portal/releases/tag/1.3.11
|
|
377
383
|
|
|
384
|
+
[1.3.37]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v1.3.36...v1.3.37
|
|
378
385
|
[1.3.36]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v1.3.35...v1.3.36
|
|
379
386
|
[1.3.35]: https://github.com/vtex/faststore-plugin-buyer-portal/releases/tag/1.3.35
|
package/package.json
CHANGED
|
@@ -14,7 +14,7 @@ export const maskExpirationDate = (expDate: string) => {
|
|
|
14
14
|
};
|
|
15
15
|
|
|
16
16
|
export const maskCVV = (verificationCode: string) => {
|
|
17
|
-
return mask(verificationCode, "
|
|
17
|
+
return mask(verificationCode, "9999").substring(0, 4);
|
|
18
18
|
};
|
|
19
19
|
|
|
20
20
|
export const findCardNetwork = (
|