@shopby/shop-sdk 1.40.0 → 1.40.1

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
@@ -2,6 +2,13 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [1.40.1](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.40.0...v1.40.1) (2023-02-10)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * getCartCountResponse type -> interface로 변경 ([d35c2e1](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/d35c2e17c2588e50c9e04ce7a6b149b8c9f70c66))
11
+
5
12
  ## [1.40.0](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.39.1...v1.40.0) (2023-02-10)
6
13
 
7
14
 
@@ -94,9 +94,9 @@ export interface CartOptionInputs {
94
94
  export interface PostCartResponse {
95
95
  count: number;
96
96
  }
97
- export declare type GetCartCountResponse = {
97
+ export interface GetCartCountResponse {
98
98
  count: number;
99
- };
99
+ }
100
100
  export interface DeleteCartRequest {
101
101
  queryString: {
102
102
  cartNo: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shopby/shop-sdk",
3
- "version": "1.40.0",
3
+ "version": "1.40.1",
4
4
  "description": "",
5
5
  "main": "build/src/index.js",
6
6
  "types": "build/types/index.d.ts",