@shopby/shop-sdk 1.27.0 → 1.27.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.27.1](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.27.0...v1.27.1) (2022-10-26)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * myzorder cart api modify ([6458aa7](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/6458aa7a3aa34f242c94933f43a66de652aeb490))
11
+
5
12
  ## [1.27.0](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.26.1...v1.27.0) (2022-10-26)
6
13
 
7
14
 
@@ -4,7 +4,7 @@ declare const order: (httpRequest: Function) => {
4
4
  /**
5
5
  * Cart
6
6
  */
7
- getCart(request: GetCartRequest): Promise<GetCartResponse>;
7
+ getCart(request: GetCartRequest): Promise<ResponseData<GetCartResponse>>;
8
8
  putCart(request: any): Promise<ResponseData<void>>;
9
9
  postCart(request: any): Promise<ResponseData<any>>;
10
10
  deleteCart(request: any): Promise<ResponseData<any>>;
@@ -170,7 +170,7 @@ export declare const create: ({ baseURL, headerOption, customHttpRequest, versio
170
170
  getTermsTermsNo(request: import("../types").GetTermsTermsNoRequest): Promise<import("../types/http").ResponseData<import("../types").GetTermsTermsNoResponse>>;
171
171
  };
172
172
  order: {
173
- getCart(request: import("../types").GetCartRequest): Promise<import("../types").GetCartResponse>;
173
+ getCart(request: import("../types").GetCartRequest): Promise<import("../types/http").ResponseData<import("../types").GetCartResponse>>;
174
174
  putCart(request: any): Promise<import("../types/http").ResponseData<void>>;
175
175
  postCart(request: any): Promise<import("../types/http").ResponseData<any>>;
176
176
  deleteCart(request: any): Promise<import("../types/http").ResponseData<any>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shopby/shop-sdk",
3
- "version": "1.27.0",
3
+ "version": "1.27.1",
4
4
  "description": "",
5
5
  "main": "build/src/index.js",
6
6
  "types": "build/types/index.d.ts",