@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.
@@ -7,9 +7,12 @@ export interface PostBoardsBoardNoArticlesRequest {
7
7
  requestBody: {
8
8
  articleTitle: string;
9
9
  articleContent: string;
10
- boardNo: string;
10
+ imageUrls: string[];
11
11
  guestName: string;
12
- images: any[];
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?: object;
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?: string;
147
- uploadedFileName?: string;
148
- downloadFileUrl?: string;
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?: TermsKey;
375
+ [key: string]: TermsKey;
373
376
  }
374
377
  export interface TermsKey {
375
- contents?: string;
376
- enforcementDate?: string;
377
- used?: boolean;
378
+ contents: string;
379
+ enforcementDate: string;
380
+ used: boolean;
378
381
  }
379
382
  export interface TermsTermsNo {
380
383
  contents?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shopby/shop-sdk",
3
- "version": "1.2.6",
3
+ "version": "1.2.10",
4
4
  "description": "",
5
5
  "main": "build/src/index.js",
6
6
  "types": "build/types/root.d.ts",