@shopby/shop-sdk 1.2.5 → 1.2.9
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 +9 -9
- package/package.json +1 -1
package/build/types/manage.d.ts
CHANGED
|
@@ -128,13 +128,13 @@ export interface GetBoardsBoardNoArticlesArticleNoResponse {
|
|
|
128
128
|
modifierType?: string;
|
|
129
129
|
content?: string;
|
|
130
130
|
articleNo?: number;
|
|
131
|
-
childArticles?: Array<
|
|
131
|
+
childArticles?: Array<GetBoardsBoardNoArticlesArticleNoResponse>;
|
|
132
132
|
registerNo?: number;
|
|
133
133
|
registerGroupNames?: string;
|
|
134
134
|
viewCnt?: number;
|
|
135
135
|
imageUrl?: string;
|
|
136
136
|
categoryNo?: number;
|
|
137
|
-
parentArticle?:
|
|
137
|
+
parentArticle?: GetBoardsBoardNoArticlesArticleNoResponse;
|
|
138
138
|
modifierName?: string;
|
|
139
139
|
modifiable?: boolean;
|
|
140
140
|
registerName?: string;
|
|
@@ -143,9 +143,9 @@ export interface GetBoardsBoardNoArticlesArticleNoResponse {
|
|
|
143
143
|
registerYmdt?: string;
|
|
144
144
|
}
|
|
145
145
|
export interface BoardsBoardNoArticlesArticleNoAttachments {
|
|
146
|
-
fileName
|
|
147
|
-
uploadedFileName
|
|
148
|
-
downloadFileUrl
|
|
146
|
+
fileName: string;
|
|
147
|
+
uploadedFileName: string;
|
|
148
|
+
downloadFileUrl: string;
|
|
149
149
|
}
|
|
150
150
|
export interface BoardsConfigurationsResponse {
|
|
151
151
|
productReviewConfig?: BoardsConfigurationsProductReviewConfig;
|
|
@@ -369,12 +369,12 @@ export interface TermsRequest extends RequestConfig {
|
|
|
369
369
|
};
|
|
370
370
|
}
|
|
371
371
|
export interface TermsResponse {
|
|
372
|
-
key
|
|
372
|
+
[key: string]: TermsKey;
|
|
373
373
|
}
|
|
374
374
|
export interface TermsKey {
|
|
375
|
-
contents
|
|
376
|
-
enforcementDate
|
|
377
|
-
used
|
|
375
|
+
contents: string;
|
|
376
|
+
enforcementDate: string;
|
|
377
|
+
used: boolean;
|
|
378
378
|
}
|
|
379
379
|
export interface TermsTermsNo {
|
|
380
380
|
contents?: string;
|