@vtex/faststore-plugin-buyer-portal 1.3.43 → 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,16 @@ 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
+
15
+ ## [1.3.44] - 2025-12-16
16
+
17
+ ### Fixed
18
+ - Remove AwaitedType export that was breaking the application build
19
+
10
20
  ## [1.3.43] - 2025-12-16
11
21
 
12
22
  ### Fixed
@@ -384,7 +394,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
384
394
  - Add CHANGELOG file
385
395
  - Add README file
386
396
 
387
- [unreleased]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v1.3.43...HEAD
397
+ [unreleased]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v1.3.45...HEAD
388
398
  [1.2.3]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v1.2.2...1.2.3
389
399
  [1.2.3]: https://github.com/vtex/faststore-plugin-buyer-portal/releases/tag/1.2.3
390
400
  [1.2.4]: https://github.com/vtex/faststore-plugin-buyer-portal/releases/tag/1.2.4
@@ -434,5 +444,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
434
444
  [1.3.36]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v1.3.35...v1.3.36
435
445
  [1.3.35]: https://github.com/vtex/faststore-plugin-buyer-portal/releases/tag/1.3.35
436
446
 
447
+ [1.3.45]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v1.3.44...v1.3.45
448
+ [1.3.44]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v1.3.43...v1.3.44
437
449
  [1.3.43]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v1.3.42...v1.3.43
438
450
  [1.3.42]: https://github.com/vtex/faststore-plugin-buyer-portal/releases/tag/1.3.42
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vtex/faststore-plugin-buyer-portal",
3
- "version": "1.3.43",
3
+ "version": "1.3.45",
4
4
  "description": "A plugin for faststore with buyer portal",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -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>>
@@ -6,8 +6,6 @@ import {
6
6
 
7
7
  import { type MutationOptions, useMutation } from "./useMutation";
8
8
 
9
- import type { AwaitedType } from "../types";
10
-
11
9
  export const useSetScopeConfig = (
12
10
  options?: MutationOptions<AwaitedType<typeof setScopeConfigService>>
13
11
  ) => {
@@ -9,4 +9,3 @@ export type {
9
9
  PaymentMethodsReqCommonParams,
10
10
  } from "./PaymentMethodsClientTypes";
11
11
  export type { ScopeInput } from "./ScopeInput";
12
- export type { AwaitedType } from "./AwaitedType";
@@ -22,4 +22,4 @@ export const SCOPE_KEYS = {
22
22
  CREDIT_CARDS: "creditCards",
23
23
  } as const;
24
24
 
25
- export const CURRENT_VERSION = "1.3.43";
25
+ export const CURRENT_VERSION = "1.3.45";