@shopby/shop-sdk 1.2.6 → 1.2.10
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/build/types/manage.d.ts +13 -10
- package/package.json +1 -1
package/build/types/manage.d.ts
CHANGED
|
@@ -7,9 +7,12 @@ export interface PostBoardsBoardNoArticlesRequest {
|
|
|
7
7
|
requestBody: {
|
|
8
8
|
articleTitle: string;
|
|
9
9
|
articleContent: string;
|
|
10
|
-
|
|
10
|
+
imageUrls: string[];
|
|
11
11
|
guestName: string;
|
|
12
|
-
images:
|
|
12
|
+
images: {
|
|
13
|
+
originalFileName: string;
|
|
14
|
+
uploadedFileName: string;
|
|
15
|
+
}[];
|
|
13
16
|
parentBoardArticleNo?: string;
|
|
14
17
|
password: string;
|
|
15
18
|
secreted: boolean;
|
|
@@ -134,7 +137,7 @@ export interface GetBoardsBoardNoArticlesArticleNoResponse {
|
|
|
134
137
|
viewCnt?: number;
|
|
135
138
|
imageUrl?: string;
|
|
136
139
|
categoryNo?: number;
|
|
137
|
-
parentArticle?:
|
|
140
|
+
parentArticle?: GetBoardsBoardNoArticlesArticleNoResponse;
|
|
138
141
|
modifierName?: string;
|
|
139
142
|
modifiable?: boolean;
|
|
140
143
|
registerName?: string;
|
|
@@ -143,9 +146,9 @@ export interface GetBoardsBoardNoArticlesArticleNoResponse {
|
|
|
143
146
|
registerYmdt?: string;
|
|
144
147
|
}
|
|
145
148
|
export interface BoardsBoardNoArticlesArticleNoAttachments {
|
|
146
|
-
fileName
|
|
147
|
-
uploadedFileName
|
|
148
|
-
downloadFileUrl
|
|
149
|
+
fileName: string;
|
|
150
|
+
uploadedFileName: string;
|
|
151
|
+
downloadFileUrl: string;
|
|
149
152
|
}
|
|
150
153
|
export interface BoardsConfigurationsResponse {
|
|
151
154
|
productReviewConfig?: BoardsConfigurationsProductReviewConfig;
|
|
@@ -369,12 +372,12 @@ export interface TermsRequest extends RequestConfig {
|
|
|
369
372
|
};
|
|
370
373
|
}
|
|
371
374
|
export interface TermsResponse {
|
|
372
|
-
key
|
|
375
|
+
[key: string]: TermsKey;
|
|
373
376
|
}
|
|
374
377
|
export interface TermsKey {
|
|
375
|
-
contents
|
|
376
|
-
enforcementDate
|
|
377
|
-
used
|
|
378
|
+
contents: string;
|
|
379
|
+
enforcementDate: string;
|
|
380
|
+
used: boolean;
|
|
378
381
|
}
|
|
379
382
|
export interface TermsTermsNo {
|
|
380
383
|
contents?: string;
|