@vtex/faststore-plugin-buyer-portal 1.3.44 → 1.3.45
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
|
+
## [1.3.45] - 2025-12-17
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- Remove AwaitedType imports
|
|
14
|
+
|
|
10
15
|
## [1.3.44] - 2025-12-16
|
|
11
16
|
|
|
12
17
|
### Fixed
|
|
@@ -389,7 +394,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
389
394
|
- Add CHANGELOG file
|
|
390
395
|
- Add README file
|
|
391
396
|
|
|
392
|
-
[unreleased]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v1.3.
|
|
397
|
+
[unreleased]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v1.3.45...HEAD
|
|
393
398
|
[1.2.3]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v1.2.2...1.2.3
|
|
394
399
|
[1.2.3]: https://github.com/vtex/faststore-plugin-buyer-portal/releases/tag/1.2.3
|
|
395
400
|
[1.2.4]: https://github.com/vtex/faststore-plugin-buyer-portal/releases/tag/1.2.4
|
|
@@ -439,6 +444,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
439
444
|
[1.3.36]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v1.3.35...v1.3.36
|
|
440
445
|
[1.3.35]: https://github.com/vtex/faststore-plugin-buyer-portal/releases/tag/1.3.35
|
|
441
446
|
|
|
447
|
+
[1.3.45]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v1.3.44...v1.3.45
|
|
442
448
|
[1.3.44]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v1.3.43...v1.3.44
|
|
443
449
|
[1.3.43]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v1.3.42...v1.3.43
|
|
444
450
|
[1.3.42]: https://github.com/vtex/faststore-plugin-buyer-portal/releases/tag/1.3.42
|
package/package.json
CHANGED
|
@@ -6,8 +6,6 @@ import {
|
|
|
6
6
|
|
|
7
7
|
import { useQuery, type QueryOptions } from "./useQuery";
|
|
8
8
|
|
|
9
|
-
import type { AwaitedType } from "../types";
|
|
10
|
-
|
|
11
9
|
export const useGetScopeConfig = (
|
|
12
10
|
props: Omit<GetScopeConfigServiceProps, "cookie">,
|
|
13
11
|
options?: QueryOptions<AwaitedType<typeof getScopeConfigService>>
|