@shopby/shop-sdk 1.0.9 → 1.1.3
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/src/display.d.ts +5 -4
- package/build/src/display.js +3 -1
- package/build/src/display.js.map +1 -1
- package/build/src/manage.d.ts +6 -6
- package/build/src/manage.js.map +1 -1
- package/build/src/order.d.ts +2 -2
- package/build/types/display.d.ts +927 -0
- package/build/types/display.js +2 -0
- package/build/types/display.js.map +1 -0
- package/build/types/enum.d.ts +3 -0
- package/build/types/enum.js +2 -0
- package/build/types/enum.js.map +1 -0
- package/build/types/manage.d.ts +361 -0
- package/build/types/order.d.ts +1515 -0
- package/build/types/order.js +2 -0
- package/build/types/order.js.map +1 -0
- package/build/types/root.d.ts +44 -41
- package/build/types/root.js +3 -0
- package/build/types/root.js.map +1 -1
- package/package.json +2 -2
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"display.js","sourceRoot":"","sources":["../../types/display.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"enum.js","sourceRoot":"","sources":["../../types/enum.ts"],"names":[],"mappings":""}
|
package/build/types/manage.d.ts
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { DirectionTypes, RequestConfig, SearchTypes } from "./root";
|
|
2
|
+
import { PageTypes } from "./enum";
|
|
1
3
|
export interface PostBoardsBoardNoArticlesRequest {
|
|
2
4
|
pathVariable: {
|
|
3
5
|
boardNo: string;
|
|
@@ -13,3 +15,362 @@ export interface PostBoardsBoardNoArticlesRequest {
|
|
|
13
15
|
secreted: boolean;
|
|
14
16
|
};
|
|
15
17
|
}
|
|
18
|
+
export interface AddressesSearchRequest extends RequestConfig {
|
|
19
|
+
queryString: {
|
|
20
|
+
pageNumber?: number;
|
|
21
|
+
pageSize?: number;
|
|
22
|
+
keyword: string;
|
|
23
|
+
};
|
|
24
|
+
}
|
|
25
|
+
export interface AddressesSearchResponse {
|
|
26
|
+
groupByStates?: Array<AddressesSearchGroupByStates>;
|
|
27
|
+
totalCount?: number;
|
|
28
|
+
items?: Array<AddressesSearchItems>;
|
|
29
|
+
}
|
|
30
|
+
export interface AddressesSearchGroupByStates {
|
|
31
|
+
count?: number;
|
|
32
|
+
state?: string;
|
|
33
|
+
}
|
|
34
|
+
export interface AddressesSearchItems {
|
|
35
|
+
zipCode?: string;
|
|
36
|
+
oldZipCode?: string;
|
|
37
|
+
roadAddressExtra?: string;
|
|
38
|
+
address?: string;
|
|
39
|
+
relatedJibun?: string;
|
|
40
|
+
roadAddress?: string;
|
|
41
|
+
jibunAddress?: string;
|
|
42
|
+
detailAddress?: string;
|
|
43
|
+
}
|
|
44
|
+
export interface BoardsBoardNoArticles {
|
|
45
|
+
images?: Array<BoardsBoardNoArticlesImages>;
|
|
46
|
+
password?: string;
|
|
47
|
+
articleTitle?: string;
|
|
48
|
+
imageUrls?: Array<object | boolean | string | number>;
|
|
49
|
+
parentBoardArticleNo?: number;
|
|
50
|
+
articleContent?: string;
|
|
51
|
+
boardCategoryNo?: number;
|
|
52
|
+
secreted?: boolean;
|
|
53
|
+
guestName?: string;
|
|
54
|
+
}
|
|
55
|
+
export interface BoardsBoardNoArticlesImages {
|
|
56
|
+
originalFileName?: string;
|
|
57
|
+
uploadedFileName?: string;
|
|
58
|
+
}
|
|
59
|
+
export interface GetBoardsBoardNoArticlesRequest extends RequestConfig {
|
|
60
|
+
pathVariable: {
|
|
61
|
+
boardNo: string;
|
|
62
|
+
};
|
|
63
|
+
queryString: {
|
|
64
|
+
pageNumber?: number;
|
|
65
|
+
pageSize?: number;
|
|
66
|
+
hasTotalCount?: boolean;
|
|
67
|
+
keyword?: string;
|
|
68
|
+
searchType?: SearchTypes;
|
|
69
|
+
categoryNo?: number;
|
|
70
|
+
startYmd?: string;
|
|
71
|
+
endYmd?: string;
|
|
72
|
+
withReplied?: boolean;
|
|
73
|
+
direction?: DirectionTypes;
|
|
74
|
+
};
|
|
75
|
+
}
|
|
76
|
+
export interface GetBoardsBoardNoArticlesResponse {
|
|
77
|
+
totalCount: number;
|
|
78
|
+
items: Array<BoardsBoardNoArticlesItems>;
|
|
79
|
+
}
|
|
80
|
+
export interface BoardsBoardNoArticlesItems {
|
|
81
|
+
modifierNo?: number;
|
|
82
|
+
replied?: boolean;
|
|
83
|
+
modifyYmdt?: string;
|
|
84
|
+
categoryLabel?: string;
|
|
85
|
+
registerType?: string;
|
|
86
|
+
title?: string;
|
|
87
|
+
secreted?: boolean;
|
|
88
|
+
modifierType?: string;
|
|
89
|
+
articleNo?: number;
|
|
90
|
+
registerNo?: number;
|
|
91
|
+
repliedCnt?: number;
|
|
92
|
+
viewCnt?: number;
|
|
93
|
+
imageUrl?: string;
|
|
94
|
+
categoryNo?: number;
|
|
95
|
+
modifierName?: string;
|
|
96
|
+
registerName?: string;
|
|
97
|
+
notice?: boolean;
|
|
98
|
+
registerYmdt?: string;
|
|
99
|
+
}
|
|
100
|
+
export interface BoardsBoardNoArticlesArticleNo {
|
|
101
|
+
images?: Array<BoardsBoardNoArticlesImages>;
|
|
102
|
+
password?: string;
|
|
103
|
+
articleTitle?: string;
|
|
104
|
+
imageUrls?: Array<object | boolean | string | number>;
|
|
105
|
+
articleContent?: string;
|
|
106
|
+
boardCategoryNo?: number;
|
|
107
|
+
secreted?: boolean;
|
|
108
|
+
guestName?: string;
|
|
109
|
+
}
|
|
110
|
+
export interface BoardsBoardNoArticlesArticleNo {
|
|
111
|
+
password?: string;
|
|
112
|
+
}
|
|
113
|
+
export interface BoardsBoardNoArticlesArticleNo {
|
|
114
|
+
modifierNo?: number;
|
|
115
|
+
attachments?: Array<BoardsBoardNoArticlesArticleNoAttachments>;
|
|
116
|
+
modifyYmdt?: string;
|
|
117
|
+
categoryLabel?: string;
|
|
118
|
+
registerType?: string;
|
|
119
|
+
title?: string;
|
|
120
|
+
secreted?: boolean;
|
|
121
|
+
modifierType?: string;
|
|
122
|
+
content?: string;
|
|
123
|
+
articleNo?: number;
|
|
124
|
+
childArticles?: Array<object | boolean | string | number>;
|
|
125
|
+
registerNo?: number;
|
|
126
|
+
registerGroupNames?: string;
|
|
127
|
+
viewCnt?: number;
|
|
128
|
+
imageUrl?: string;
|
|
129
|
+
categoryNo?: number;
|
|
130
|
+
parentArticle?: object;
|
|
131
|
+
modifierName?: string;
|
|
132
|
+
modifiable?: boolean;
|
|
133
|
+
registerName?: string;
|
|
134
|
+
notice?: boolean;
|
|
135
|
+
memberId?: string;
|
|
136
|
+
registerYmdt?: string;
|
|
137
|
+
}
|
|
138
|
+
export interface BoardsBoardNoArticlesArticleNoAttachments {
|
|
139
|
+
fileName?: string;
|
|
140
|
+
uploadedFileName?: string;
|
|
141
|
+
downloadFileUrl?: string;
|
|
142
|
+
}
|
|
143
|
+
export interface BoardsConfigurationsResponse {
|
|
144
|
+
productReviewConfig?: BoardsConfigurationsProductReviewConfig;
|
|
145
|
+
productInquiryConfig?: BoardsConfigurationsProductInquiryConfig;
|
|
146
|
+
boardConfigs?: Array<BoardsConfigurationsBoardConfigs>;
|
|
147
|
+
inquiryConfig?: BoardsConfigurationsInquiryConfig;
|
|
148
|
+
}
|
|
149
|
+
export interface BoardsConfigurationsBoardConfigs {
|
|
150
|
+
replyUsed?: boolean;
|
|
151
|
+
thumbnailUsed?: boolean;
|
|
152
|
+
guestPostingUsed?: boolean;
|
|
153
|
+
used?: boolean;
|
|
154
|
+
memberPostingUsed?: boolean;
|
|
155
|
+
imageDisplayType?: string;
|
|
156
|
+
displayType?: string;
|
|
157
|
+
categoryUsed?: boolean;
|
|
158
|
+
attachmentUsed?: boolean;
|
|
159
|
+
name?: string;
|
|
160
|
+
secretPostingUsed?: boolean;
|
|
161
|
+
boardId?: string;
|
|
162
|
+
categories?: Array<BoardsConfigurationsCategories>;
|
|
163
|
+
order?: number;
|
|
164
|
+
boardNo?: number;
|
|
165
|
+
}
|
|
166
|
+
export interface BoardsConfigurationsCategories {
|
|
167
|
+
categoryNo?: number;
|
|
168
|
+
label?: string;
|
|
169
|
+
}
|
|
170
|
+
export interface BoardsConfigurationsInquiryConfig {
|
|
171
|
+
replyUsed?: boolean;
|
|
172
|
+
guestPostingUsed?: boolean;
|
|
173
|
+
description?: string;
|
|
174
|
+
memberPostingUsed?: boolean;
|
|
175
|
+
used?: boolean;
|
|
176
|
+
answerMailTemplateUsed?: boolean;
|
|
177
|
+
imageDisplayType?: string;
|
|
178
|
+
answerSmsTemplateUsed?: boolean;
|
|
179
|
+
displayType?: string;
|
|
180
|
+
attachmentUsed?: boolean;
|
|
181
|
+
name?: string;
|
|
182
|
+
secretPostingUsed?: boolean;
|
|
183
|
+
emailUsed?: boolean;
|
|
184
|
+
mallNo?: number;
|
|
185
|
+
smsUsed?: boolean;
|
|
186
|
+
}
|
|
187
|
+
export interface BoardsConfigurationsProductInquiryConfig {
|
|
188
|
+
imageDisplayType?: string;
|
|
189
|
+
replyUsed?: boolean;
|
|
190
|
+
displayType?: string;
|
|
191
|
+
guestPostingUsed?: boolean;
|
|
192
|
+
attachmentUsed?: boolean;
|
|
193
|
+
name?: string;
|
|
194
|
+
secretPostingUsed?: boolean;
|
|
195
|
+
memberPostingUsed?: boolean;
|
|
196
|
+
used?: boolean;
|
|
197
|
+
}
|
|
198
|
+
export interface BoardsConfigurationsProductReviewConfig {
|
|
199
|
+
imageDisplayType?: string;
|
|
200
|
+
replyUsed?: boolean;
|
|
201
|
+
displayType?: string;
|
|
202
|
+
reviewAccumulation?: BoardsConfigurationsProductReviewConfigReviewAccumulation;
|
|
203
|
+
guestPostingUsed?: boolean;
|
|
204
|
+
attachmentUsed?: boolean;
|
|
205
|
+
name?: string;
|
|
206
|
+
secretPostingUsed?: boolean;
|
|
207
|
+
memberPostingUsed?: boolean;
|
|
208
|
+
used?: boolean;
|
|
209
|
+
}
|
|
210
|
+
export interface BoardsConfigurationsProductReviewConfigReviewAccumulation {
|
|
211
|
+
normalReview?: BoardsConfigurationsProductReviewConfigReviewAccumulationNormalReview;
|
|
212
|
+
use?: boolean;
|
|
213
|
+
photoReview?: BoardsConfigurationsProductReviewConfigReviewAccumulationPhotoReview;
|
|
214
|
+
}
|
|
215
|
+
export interface BoardsConfigurationsProductReviewConfigReviewAccumulationNormalReview {
|
|
216
|
+
amount?: number;
|
|
217
|
+
contentLength?: number;
|
|
218
|
+
}
|
|
219
|
+
export interface BoardsConfigurationsProductReviewConfigReviewAccumulationPhotoReview {
|
|
220
|
+
amount?: number;
|
|
221
|
+
contentLength?: number;
|
|
222
|
+
}
|
|
223
|
+
export interface Inquiries {
|
|
224
|
+
inquiryNo?: number;
|
|
225
|
+
}
|
|
226
|
+
export interface Inquiries {
|
|
227
|
+
totalCount?: number;
|
|
228
|
+
items?: Array<InquiriesItems>;
|
|
229
|
+
}
|
|
230
|
+
export interface InquiriesAnswer {
|
|
231
|
+
answerRegisterYmdt?: string;
|
|
232
|
+
answerContent?: string;
|
|
233
|
+
answerNo?: number;
|
|
234
|
+
}
|
|
235
|
+
export interface InquiriesInquiryType {
|
|
236
|
+
inquiryTypeDescription?: string;
|
|
237
|
+
inquiryTypeNo?: number;
|
|
238
|
+
inquiryTypeName?: string;
|
|
239
|
+
}
|
|
240
|
+
export interface InquiriesItems {
|
|
241
|
+
answerSmsSend?: boolean;
|
|
242
|
+
inquiryType?: InquiriesInquiryType;
|
|
243
|
+
orderNo?: string;
|
|
244
|
+
answerEmailSend?: boolean;
|
|
245
|
+
issuerName?: string;
|
|
246
|
+
originalImageUrls?: Array<object | boolean | string | number>;
|
|
247
|
+
inquiryStatus?: string;
|
|
248
|
+
productName?: string;
|
|
249
|
+
registerNo?: number;
|
|
250
|
+
inquiryTitle?: string;
|
|
251
|
+
answer?: InquiriesAnswer;
|
|
252
|
+
imageUrls?: Array<object | boolean | string | number>;
|
|
253
|
+
inquiryContent?: string;
|
|
254
|
+
productNo?: number;
|
|
255
|
+
registerYmdt?: string;
|
|
256
|
+
inquiryNo?: number;
|
|
257
|
+
}
|
|
258
|
+
export interface InquiriesConfigurations {
|
|
259
|
+
replyUsed?: boolean;
|
|
260
|
+
guestPostingUsed?: boolean;
|
|
261
|
+
description?: string;
|
|
262
|
+
memberPostingUsed?: boolean;
|
|
263
|
+
used?: boolean;
|
|
264
|
+
answerMailTemplateUsed?: boolean;
|
|
265
|
+
imageDisplayType?: string;
|
|
266
|
+
answerSmsTemplateUsed?: boolean;
|
|
267
|
+
displayType?: string;
|
|
268
|
+
attachmentUsed?: boolean;
|
|
269
|
+
name?: string;
|
|
270
|
+
secretPostingUsed?: boolean;
|
|
271
|
+
emailUsed?: boolean;
|
|
272
|
+
mallNo?: number;
|
|
273
|
+
smsUsed?: boolean;
|
|
274
|
+
}
|
|
275
|
+
export interface InquiriesInquiryNo {
|
|
276
|
+
answerSmsSend?: boolean;
|
|
277
|
+
inquiryType?: InquiriesInquiryNoInquiryType;
|
|
278
|
+
orderNo?: string;
|
|
279
|
+
answerEmailSend?: boolean;
|
|
280
|
+
issuerName?: string;
|
|
281
|
+
originalImageUrls?: Array<object | boolean | string | number>;
|
|
282
|
+
inquiryStatus?: string;
|
|
283
|
+
productName?: string;
|
|
284
|
+
registerNo?: number;
|
|
285
|
+
inquiryTitle?: string;
|
|
286
|
+
answer?: InquiriesInquiryNoAnswer;
|
|
287
|
+
imageUrls?: Array<object | boolean | string | number>;
|
|
288
|
+
inquiryContent?: string;
|
|
289
|
+
productNo?: number;
|
|
290
|
+
registerYmdt?: string;
|
|
291
|
+
inquiryNo?: number;
|
|
292
|
+
}
|
|
293
|
+
export interface InquiriesInquiryNoAnswer {
|
|
294
|
+
answerRegisterYmdt?: string;
|
|
295
|
+
answerContent?: string;
|
|
296
|
+
answerNo?: number;
|
|
297
|
+
}
|
|
298
|
+
export interface InquiriesInquiryNoInquiryType {
|
|
299
|
+
inquiryTypeDescription?: string;
|
|
300
|
+
inquiryTypeNo?: number;
|
|
301
|
+
inquiryTypeName?: string;
|
|
302
|
+
}
|
|
303
|
+
export interface PageScriptsRequest extends RequestConfig {
|
|
304
|
+
queryString: {
|
|
305
|
+
pageTypes: PageTypes;
|
|
306
|
+
};
|
|
307
|
+
}
|
|
308
|
+
export interface PageScriptsResponse {
|
|
309
|
+
deviceType: string;
|
|
310
|
+
pageType: PageTypes;
|
|
311
|
+
pageTypeLabel: string;
|
|
312
|
+
content: string;
|
|
313
|
+
}
|
|
314
|
+
export interface ProfileAccumulations {
|
|
315
|
+
memberNo?: number;
|
|
316
|
+
totalAmt?: number;
|
|
317
|
+
totalCount?: number;
|
|
318
|
+
items?: Array<ProfileAccumulationsItems>;
|
|
319
|
+
}
|
|
320
|
+
export interface ProfileAccumulationsItems {
|
|
321
|
+
expireYmdt?: string;
|
|
322
|
+
orderNo?: string;
|
|
323
|
+
accumulationNo?: number;
|
|
324
|
+
accumulationRestAmt?: number;
|
|
325
|
+
accumulationReserveReason?: string;
|
|
326
|
+
accumulationReserveReasonDisplay?: string;
|
|
327
|
+
startYmdt?: string;
|
|
328
|
+
reasonDetail?: string;
|
|
329
|
+
totalAvailableAmt?: number;
|
|
330
|
+
accumulationStatusGroupType?: string;
|
|
331
|
+
productDisplayName?: string;
|
|
332
|
+
accumulationAmt?: number;
|
|
333
|
+
accumulationStatus?: string;
|
|
334
|
+
registerYmdt?: string;
|
|
335
|
+
}
|
|
336
|
+
export interface ProfileAccumulationsSummary {
|
|
337
|
+
totalAvailableAmt?: number;
|
|
338
|
+
totalExpireAmt?: number;
|
|
339
|
+
}
|
|
340
|
+
export interface ProfileAccumulationsWaiting {
|
|
341
|
+
waitingAccumulation?: number;
|
|
342
|
+
}
|
|
343
|
+
export interface ShopbyInstagramMedia {
|
|
344
|
+
data?: Array<ShopbyInstagramMediaData>;
|
|
345
|
+
error?: ShopbyInstagramMediaError;
|
|
346
|
+
}
|
|
347
|
+
export interface ShopbyInstagramMediaData {
|
|
348
|
+
media_type?: string;
|
|
349
|
+
thumbnail_url?: string;
|
|
350
|
+
permalink?: string;
|
|
351
|
+
media_url?: string;
|
|
352
|
+
}
|
|
353
|
+
export interface ShopbyInstagramMediaError {
|
|
354
|
+
code?: number;
|
|
355
|
+
type?: string;
|
|
356
|
+
message?: string;
|
|
357
|
+
fbtrace_id?: string;
|
|
358
|
+
}
|
|
359
|
+
export interface TermsRequest extends RequestConfig {
|
|
360
|
+
queryString: {
|
|
361
|
+
termsTypes: string;
|
|
362
|
+
};
|
|
363
|
+
}
|
|
364
|
+
export interface TermsResponse {
|
|
365
|
+
key?: TermsKey;
|
|
366
|
+
}
|
|
367
|
+
export interface TermsKey {
|
|
368
|
+
contents?: string;
|
|
369
|
+
enforcementDate?: string;
|
|
370
|
+
used?: boolean;
|
|
371
|
+
}
|
|
372
|
+
export interface TermsTermsNo {
|
|
373
|
+
contents?: string;
|
|
374
|
+
enforcementDate?: string;
|
|
375
|
+
used?: boolean;
|
|
376
|
+
}
|