@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.
@@ -128,13 +128,13 @@ export interface GetBoardsBoardNoArticlesArticleNoResponse {
128
128
  modifierType?: string;
129
129
  content?: string;
130
130
  articleNo?: number;
131
- childArticles?: Array<object | boolean | string | number>;
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?: object;
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?: string;
147
- uploadedFileName?: string;
148
- downloadFileUrl?: string;
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?: TermsKey;
372
+ [key: string]: TermsKey;
373
373
  }
374
374
  export interface TermsKey {
375
- contents?: string;
376
- enforcementDate?: string;
377
- used?: boolean;
375
+ contents: string;
376
+ enforcementDate: string;
377
+ used: boolean;
378
378
  }
379
379
  export interface TermsTermsNo {
380
380
  contents?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shopby/shop-sdk",
3
- "version": "1.2.5",
3
+ "version": "1.2.9",
4
4
  "description": "",
5
5
  "main": "build/src/index.js",
6
6
  "types": "build/types/root.d.ts",