@shopby/shop-sdk 1.78.16 → 1.78.17
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.78.17](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.78.16...v1.78.17) (2024-10-30)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* 상품후기 신고하기 API 스펙 변경으로 해당 필드 옵셔널 처리 ([bd4ca59](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/bd4ca59ad0be66794287435720d64bf67b343fb8))
|
|
11
|
+
|
|
5
12
|
### [1.78.16](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.78.15...v1.78.16) (2024-10-30)
|
|
6
13
|
|
|
7
14
|
|
|
@@ -1468,7 +1468,7 @@ export interface GetProductsProductNoProductReviewsReviewNoComments {
|
|
|
1468
1468
|
export interface PostProductsProductNoProductReviewsReviewNoReport {
|
|
1469
1469
|
pathVariable: GetProductsProductNoProductReviewsReviewNoRequest['pathVariable'];
|
|
1470
1470
|
requestBody: {
|
|
1471
|
-
reviewNo
|
|
1471
|
+
reviewNo?: number;
|
|
1472
1472
|
reportReasonCd: Extract<ReportReasonType, 'COPYRIGHT' | 'SLANDER'>;
|
|
1473
1473
|
content: string;
|
|
1474
1474
|
};
|