@shopby/shop-sdk 1.78.12 → 1.78.14
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 +14 -0
- package/build/types/domain/manage/index.d.ts +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,20 @@
|
|
|
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.14](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.78.13...v1.78.14) (2024-10-29)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* parentArticle 타입 수정 ([b905353](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/b90535393147c8214e24a8c7a6d22ac33e60739c))
|
|
11
|
+
|
|
12
|
+
### [1.78.13](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.78.12...v1.78.13) (2024-10-29)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* recommended 타입 오류 수정 ([261e6d6](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/261e6d6e6df164665f42d68c4ee5ac1122957660))
|
|
18
|
+
|
|
5
19
|
### [1.78.12](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.78.11...v1.78.12) (2024-10-29)
|
|
6
20
|
|
|
7
21
|
|
|
@@ -611,7 +611,7 @@ export interface PostBoardsPostsRequest extends RequestConfig {
|
|
|
611
611
|
useAccessToken?: boolean;
|
|
612
612
|
}
|
|
613
613
|
declare type BoardsPostsItem = Omit<BoardsBoardNoArticlesItem, 'replied' | 'articleNo' | 'recommendCount' | 'notice' | 'content' | 'memberId' | 'reportCount'> & {
|
|
614
|
-
parentArticle:
|
|
614
|
+
parentArticle: GetBoardsBoardNoPostsPostNoResponse;
|
|
615
615
|
postSearchTags: string[];
|
|
616
616
|
boardNo: number;
|
|
617
617
|
scraped: boolean;
|
|
@@ -642,7 +642,7 @@ export declare type GetBoardsBoardNoPostsPostNoResponse = Omit<GetBoardsBoardNoA
|
|
|
642
642
|
scraped: boolean;
|
|
643
643
|
noticed: boolean;
|
|
644
644
|
recommendedCnt: number;
|
|
645
|
-
recommended:
|
|
645
|
+
recommended: boolean;
|
|
646
646
|
postNo: number;
|
|
647
647
|
repliedCnt: number;
|
|
648
648
|
replyEnabled: boolean;
|