@shopby/shop-sdk 1.39.0 → 1.39.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.39.1](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.39.0...v1.39.1) (2023-02-10)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * 관련상품 응답 값 수정 ([3d572e3](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/3d572e3af8611bcf1f334961ee80917eaa5ae667))
11
+
5
12
  ## [1.39.0](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.37.3...v1.39.0) (2023-02-10)
6
13
 
7
14
 
@@ -202,7 +202,7 @@ export declare type Sticker = {
202
202
  name: string;
203
203
  label: string;
204
204
  };
205
- export interface GetProductsProductNoRelatedProductsResponse {
205
+ export interface RelatedProduct {
206
206
  productNo: number;
207
207
  productName: string;
208
208
  stickers: Array<Sticker>;
@@ -214,6 +214,7 @@ export interface GetProductsProductNoRelatedProductsResponse {
214
214
  additionalDiscountAmt: number;
215
215
  requiresAgeVerification: boolean;
216
216
  }
217
+ export declare type GetProductsProductNoRelatedProductsResponse = Array<RelatedProduct>;
217
218
  export interface PostProfileRecentProductsRequest extends RequestConfig {
218
219
  requestBody: {
219
220
  productNos: number;
@@ -1,5 +1,4 @@
1
1
  export declare type Method = 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH' | 'OPTIONS';
2
- export declare type Test = string;
3
2
  export interface CreatorType {
4
3
  baseURL: string;
5
4
  headers: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shopby/shop-sdk",
3
- "version": "1.39.0",
3
+ "version": "1.39.1",
4
4
  "description": "",
5
5
  "main": "build/src/index.js",
6
6
  "types": "build/types/index.d.ts",