@shopby/shop-sdk 1.73.7 → 1.73.8

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.73.8](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.73.7...v1.73.8) (2024-06-25)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * 영문상품명(producrNameEn) 컬럼 추가 ([b682024](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/b682024ce5d1329977d98655c7a318f9ffc1fdf6))
11
+
5
12
  ### [1.73.7](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.73.6...v1.73.7) (2024-06-17)
6
13
 
7
14
 
@@ -706,6 +706,7 @@ export interface GetProductsProductNoInquiresInquiryNoResponse {
706
706
  type: ProductInquiryType;
707
707
  title: string;
708
708
  productName: string;
709
+ productNameEn: string;
709
710
  providerType: ProviderType;
710
711
  content: string;
711
712
  administrator: boolean;
@@ -769,6 +770,7 @@ export interface ProfileProductInquiriesItem {
769
770
  type: ProductInquiryType;
770
771
  title: string;
771
772
  productName: string;
773
+ productNameEn: string;
772
774
  providerType: ProviderType;
773
775
  content: string;
774
776
  administrator: boolean;
@@ -1138,6 +1140,7 @@ export interface ProfileProductReviewsItem {
1138
1140
  externalReview?: boolean;
1139
1141
  content?: string;
1140
1142
  productName?: string;
1143
+ productNameEn?: string;
1141
1144
  updateYmdt?: string;
1142
1145
  rate?: number;
1143
1146
  bestReviewYn?: string;
@@ -1352,6 +1355,7 @@ export interface ProductReview {
1352
1355
  content: string;
1353
1356
  providerType: ProviderType;
1354
1357
  productName: string;
1358
+ productNameEn: string;
1355
1359
  updateYmdt: string;
1356
1360
  bestReviewYn: BestReviewType;
1357
1361
  rate: number;
@@ -1753,6 +1757,7 @@ export declare type ReviewsBoardsItem = {
1753
1757
  productInfo: {
1754
1758
  no: number;
1755
1759
  name: string;
1760
+ productNameEn: string;
1756
1761
  thumbnailImage: string;
1757
1762
  totalReviewCount: number;
1758
1763
  };
@@ -1783,6 +1788,7 @@ export declare type ReviewsBoardsReviewedProductsItem = {
1783
1788
  reviews: ReviewedProductsReviewItem[];
1784
1789
  productNo: number;
1785
1790
  productName: string;
1791
+ productNameEn: string;
1786
1792
  appliedImmediateDiscountPrice: number;
1787
1793
  salePrice: number;
1788
1794
  mainImage: string;
@@ -351,6 +351,7 @@ export interface InquiriesItem {
351
351
  orderNo?: string;
352
352
  productNo?: number;
353
353
  productName?: string;
354
+ productNameEn?: string;
354
355
  inquiryTitle: string;
355
356
  inquiryContent: string;
356
357
  answerSmsSend: boolean;
@@ -395,6 +396,7 @@ export interface GetInquiriesInquiryNoResponse {
395
396
  orderNo?: string;
396
397
  productNo?: number;
397
398
  productName?: string;
399
+ productNameEn?: string;
398
400
  inquiryTitle: string;
399
401
  inquiryContent: string;
400
402
  answerSmsSend: boolean;
@@ -314,6 +314,7 @@ export declare type Sticker = {
314
314
  export interface RelatedProduct {
315
315
  productNo: number;
316
316
  productName: string;
317
+ productNameEn: string;
317
318
  stickers: Array<Sticker>;
318
319
  immediateDiscountUnitType: DiscountUnit;
319
320
  imageUrl: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shopby/shop-sdk",
3
- "version": "1.73.7",
3
+ "version": "1.73.8",
4
4
  "description": "",
5
5
  "main": "build/src/index.js",
6
6
  "types": "build/types/index.d.ts",