@shopby/shop-sdk 1.13.2 → 1.14.0
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/domain/claim/index.d.ts +30 -28
- package/build/src/domain/claim/index.js +15 -0
- package/build/src/domain/claim/index.js.map +1 -1
- package/build/src/domain/claim/maps/index.d.ts +47 -24
- package/build/src/domain/claim/maps/index.js +23 -0
- package/build/src/domain/claim/maps/index.js.map +1 -1
- package/build/src/domain/order/maps/delivery.d.ts +46 -46
- package/build/src/domain/order/maps/delivery.js.map +1 -1
- package/build/src/index.d.ts +28 -28
- package/build/types/domain/claim/index.d.ts +331 -632
- package/build/types/domain/claim/index.js.map +1 -1
- package/build/types/domain/claim/unions.d.ts +7 -1
- package/build/types/domain/order/index.d.ts +3 -20
- package/build/types/domain/order/index.js.map +1 -1
- package/build/types/domain/order/unions.d.ts +2 -0
- package/build/types/domain/product/delivery/index.d.ts +2 -2
- package/package.json +1 -1
|
@@ -1,638 +1,337 @@
|
|
|
1
|
+
import { ClaimClassType, ClaimOptionType, ClaimReasonType, ClaimStatusType, ClaimStatusTypeLabel, ClaimType, ClaimWithdrawValidationType, ExchangePayInfoPayType, NextActionType, RefundType, ResponsibleObjectType, ReturnWayType } from './unions';
|
|
2
|
+
import { BankAccountInfo, BankCdAndLabel, DefaultOrderStatusType, DeliveryAmtInfo, DeliveryCompanyType, DeliveryCompanyTypeLabel, OptionInputResponse, OrderOptionPrice, OrderStatusDate, PayType, PgType, ProductAmtInfo, SubtractionAmtInfo } from '../../domain/order';
|
|
3
|
+
import { Bank, DateYmdt, Yn } from '../../common';
|
|
1
4
|
export * from './unions';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
account?: string;
|
|
16
|
-
}
|
|
17
|
-
export interface GuestClaimsClaimNoResult {
|
|
18
|
-
claimReasonDetail?: string;
|
|
19
|
-
returnDelivery?: GuestClaimsClaimNoResultReturnDelivery;
|
|
20
|
-
claimedOptions?: Array<GuestClaimsClaimNoResultClaimedOptions>;
|
|
21
|
-
claimNo?: number;
|
|
22
|
-
exchangedOption?: GuestClaimsClaimNoResultExchangedOption;
|
|
23
|
-
claimReasonType?: string;
|
|
24
|
-
returnWayType?: string;
|
|
25
|
-
orderProductOptionNo?: number;
|
|
26
|
-
claimYmdt?: string;
|
|
27
|
-
exchangePayInfo?: GuestClaimsClaimNoResultExchangePayInfo;
|
|
28
|
-
exchangeBeforeDelivery?: boolean;
|
|
29
|
-
claimImageUrls?: Array<object | boolean | string | number>;
|
|
30
|
-
claimedOption?: GuestClaimsClaimNoResultClaimedOption;
|
|
31
|
-
returnAddress?: GuestClaimsClaimNoResultReturnAddress;
|
|
32
|
-
refundType?: string;
|
|
33
|
-
claimType?: string;
|
|
34
|
-
exchangeAddress?: GuestClaimsClaimNoResultExchangeAddress;
|
|
35
|
-
claimClassType?: string;
|
|
36
|
-
claimPriceInfo?: GuestClaimsClaimNoResultClaimPriceInfo;
|
|
37
|
-
refundBankAccount?: GuestClaimsClaimNoResultRefundBankAccount;
|
|
38
|
-
}
|
|
39
|
-
export interface ClaimOrderOptionNoPath {
|
|
40
|
-
orderOptionNo: string;
|
|
41
|
-
}
|
|
42
|
-
export interface GuestOrderOptionOrderOptionNoClaimsRequest {
|
|
43
|
-
pathVariable: ClaimOrderOptionNoPath;
|
|
44
|
-
queryString: {
|
|
45
|
-
claimType: string;
|
|
5
|
+
/**
|
|
6
|
+
* path: /profile/claims/cancel
|
|
7
|
+
*/
|
|
8
|
+
export interface PostProfileClaimsCancelRequest {
|
|
9
|
+
requestBody: {
|
|
10
|
+
claimReasonDetail: string;
|
|
11
|
+
responsibleObjectType?: ResponsibleObjectType;
|
|
12
|
+
claimType: ClaimType;
|
|
13
|
+
claimedProductOptions: ClaimedProductOption[];
|
|
14
|
+
saveBankAccountInfo: boolean;
|
|
15
|
+
bankAccountInfo: BankAccountInfo;
|
|
16
|
+
claimReasonType: ClaimReasonType;
|
|
17
|
+
refundsImmediately: boolean;
|
|
46
18
|
};
|
|
47
19
|
}
|
|
48
|
-
export interface
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
deliverable?: boolean;
|
|
106
|
-
optionUsed?: boolean;
|
|
107
|
-
productName?: string;
|
|
108
|
-
claimStatusTypeLabel?: string;
|
|
109
|
-
claimStatusType?: string;
|
|
110
|
-
additionalProductNo?: number;
|
|
111
|
-
optionType?: string;
|
|
112
|
-
payType?: string;
|
|
113
|
-
deliveryInternationalYn?: boolean;
|
|
114
|
-
price?: GuestClaimsClaimNoResultPrice;
|
|
115
|
-
imageUrl?: string;
|
|
116
|
-
member?: boolean;
|
|
117
|
-
reservation?: boolean;
|
|
118
|
-
nextActions?: Array<GuestClaimsClaimNoResultNextActions>;
|
|
119
|
-
refundable?: boolean;
|
|
120
|
-
optionNo?: number;
|
|
121
|
-
orderOptionNo?: number;
|
|
122
|
-
productNo?: number;
|
|
123
|
-
claimReasonDetail?: string;
|
|
124
|
-
optionTitle?: string;
|
|
125
|
-
delivery?: GuestClaimsClaimNoResultDelivery;
|
|
126
|
-
brandName?: string;
|
|
127
|
-
pgType?: string;
|
|
128
|
-
orderNo?: string;
|
|
129
|
-
orderStatusType?: string;
|
|
130
|
-
optionValue?: string;
|
|
131
|
-
orderCnt?: number;
|
|
132
|
-
exchangeYn?: string;
|
|
133
|
-
accumulationAmt?: number;
|
|
134
|
-
orderStatusDate?: GuestClaimsClaimNoResultOrderStatusDate;
|
|
135
|
-
brandNameEn?: string;
|
|
136
|
-
productNameEn?: string;
|
|
137
|
-
optionName?: string;
|
|
138
|
-
optionManagementCd?: string;
|
|
139
|
-
}
|
|
140
|
-
export interface GuestClaimsClaimNoResultDelivery {
|
|
141
|
-
deliveryCompanyTypeLabel?: string;
|
|
142
|
-
deliveryCompanyType?: string;
|
|
143
|
-
retrieveInvoiceUrl?: string;
|
|
144
|
-
invoiceNo?: string;
|
|
145
|
-
}
|
|
146
|
-
export interface GuestClaimsClaimNoResultExchangeAddress {
|
|
147
|
-
note?: string;
|
|
148
|
-
addressStr?: string;
|
|
149
|
-
address?: string;
|
|
150
|
-
name?: string;
|
|
151
|
-
jibunAddress?: string;
|
|
152
|
-
detailAddress?: string;
|
|
153
|
-
zipCd?: string;
|
|
154
|
-
contact?: string;
|
|
155
|
-
}
|
|
156
|
-
export interface GuestClaimsClaimNoResultExchangePayInfo {
|
|
157
|
-
exchangePayAmt?: number;
|
|
158
|
-
bankAccount?: GuestClaimsClaimNoResultExchangePayInfoBankAccount;
|
|
159
|
-
payType?: string;
|
|
160
|
-
remitter?: string;
|
|
161
|
-
}
|
|
162
|
-
export interface GuestClaimsClaimNoResultExchangePayInfoBankAccount {
|
|
163
|
-
bankAccount?: string;
|
|
164
|
-
bankDepositorName?: string;
|
|
165
|
-
bank?: string;
|
|
166
|
-
bankName?: string;
|
|
167
|
-
}
|
|
168
|
-
export interface GuestClaimsClaimNoResultExchangedOption {
|
|
169
|
-
reservationDeliveryYmdt?: string;
|
|
170
|
-
claimNo?: number;
|
|
171
|
-
inputs?: Array<GuestClaimsClaimNoResultInputs>;
|
|
172
|
-
claimReasonType?: string;
|
|
173
|
-
deliverable?: boolean;
|
|
174
|
-
optionUsed?: boolean;
|
|
175
|
-
productName?: string;
|
|
176
|
-
claimStatusTypeLabel?: string;
|
|
177
|
-
claimStatusType?: string;
|
|
178
|
-
additionalProductNo?: number;
|
|
179
|
-
optionType?: string;
|
|
180
|
-
payType?: string;
|
|
181
|
-
deliveryInternationalYn?: boolean;
|
|
182
|
-
price?: GuestClaimsClaimNoResultExchangedOptionPrice;
|
|
183
|
-
imageUrl?: string;
|
|
184
|
-
member?: boolean;
|
|
185
|
-
reservation?: boolean;
|
|
186
|
-
nextActions?: Array<GuestClaimsClaimNoResultNextActions>;
|
|
187
|
-
refundable?: boolean;
|
|
188
|
-
optionNo?: number;
|
|
189
|
-
orderOptionNo?: number;
|
|
190
|
-
productNo?: number;
|
|
191
|
-
claimReasonDetail?: string;
|
|
192
|
-
optionTitle?: string;
|
|
193
|
-
delivery?: GuestClaimsClaimNoResultExchangedOptionDelivery;
|
|
194
|
-
brandName?: string;
|
|
195
|
-
pgType?: string;
|
|
196
|
-
orderNo?: string;
|
|
197
|
-
orderStatusType?: string;
|
|
198
|
-
optionValue?: string;
|
|
199
|
-
orderCnt?: number;
|
|
200
|
-
exchangeYn?: string;
|
|
201
|
-
accumulationAmt?: number;
|
|
202
|
-
orderStatusDate?: GuestClaimsClaimNoResultExchangedOptionOrderStatusDate;
|
|
203
|
-
brandNameEn?: string;
|
|
204
|
-
productNameEn?: string;
|
|
205
|
-
optionName?: string;
|
|
206
|
-
optionManagementCd?: string;
|
|
207
|
-
}
|
|
208
|
-
export interface GuestClaimsClaimNoResultExchangedOptionDelivery {
|
|
209
|
-
deliveryCompanyTypeLabel?: string;
|
|
210
|
-
deliveryCompanyType?: string;
|
|
211
|
-
retrieveInvoiceUrl?: string;
|
|
212
|
-
invoiceNo?: string;
|
|
213
|
-
}
|
|
214
|
-
export interface GuestClaimsClaimNoResultExchangedOptionOrderStatusDate {
|
|
215
|
-
reviewableYmdt?: string;
|
|
216
|
-
buyConfirmYmdt?: string;
|
|
217
|
-
registerYmdt?: string;
|
|
218
|
-
}
|
|
219
|
-
export interface GuestClaimsClaimNoResultExchangedOptionPrice {
|
|
220
|
-
buyPrice?: number;
|
|
221
|
-
buyAmt?: number;
|
|
222
|
-
immediateDiscountedAmt?: number;
|
|
223
|
-
immediateDiscountAmt?: number;
|
|
224
|
-
additionalDiscountAmt?: number;
|
|
225
|
-
salePrice?: number;
|
|
226
|
-
standardAmt?: number;
|
|
227
|
-
immediateDiscountedPrice?: number;
|
|
228
|
-
standardPrice?: number;
|
|
229
|
-
addPrice?: number;
|
|
230
|
-
accumulationRate?: number;
|
|
231
|
-
}
|
|
232
|
-
export interface GuestClaimsClaimNoResultInputs {
|
|
233
|
-
inputValue?: string;
|
|
234
|
-
inputLabel?: string;
|
|
235
|
-
}
|
|
236
|
-
export interface GuestClaimsClaimNoResultNextActions {
|
|
237
|
-
nextActionType?: string;
|
|
238
|
-
uri?: string;
|
|
239
|
-
}
|
|
240
|
-
export interface GuestClaimsClaimNoResultOrderStatusDate {
|
|
241
|
-
reviewableYmdt?: string;
|
|
242
|
-
buyConfirmYmdt?: string;
|
|
243
|
-
registerYmdt?: string;
|
|
244
|
-
}
|
|
245
|
-
export interface GuestClaimsClaimNoResultPrice {
|
|
246
|
-
buyPrice?: number;
|
|
247
|
-
buyAmt?: number;
|
|
248
|
-
immediateDiscountedAmt?: number;
|
|
249
|
-
immediateDiscountAmt?: number;
|
|
250
|
-
additionalDiscountAmt?: number;
|
|
251
|
-
salePrice?: number;
|
|
252
|
-
standardAmt?: number;
|
|
253
|
-
immediateDiscountedPrice?: number;
|
|
254
|
-
standardPrice?: number;
|
|
255
|
-
addPrice?: number;
|
|
256
|
-
accumulationRate?: number;
|
|
257
|
-
}
|
|
258
|
-
export interface GuestClaimsClaimNoResultRefundBankAccount {
|
|
259
|
-
bankAccount?: string;
|
|
260
|
-
bankDepositorName?: string;
|
|
261
|
-
bank?: string;
|
|
262
|
-
bankName?: string;
|
|
263
|
-
}
|
|
264
|
-
export interface GuestClaimsClaimNoResultReturnAddress {
|
|
265
|
-
note?: string;
|
|
266
|
-
addressStr?: string;
|
|
267
|
-
address?: string;
|
|
268
|
-
name?: string;
|
|
269
|
-
jibunAddress?: string;
|
|
270
|
-
detailAddress?: string;
|
|
271
|
-
zipCd?: string;
|
|
272
|
-
contact?: string;
|
|
273
|
-
}
|
|
274
|
-
export interface GuestClaimsClaimNoResultReturnDelivery {
|
|
275
|
-
deliveryCompanyTypeLabel?: string;
|
|
276
|
-
deliveryCompanyType?: string;
|
|
277
|
-
invoiceNo?: string;
|
|
278
|
-
evadesReturnProcess?: boolean;
|
|
279
|
-
}
|
|
280
|
-
export interface GuestOrderOptionsOrderOptionNoClaimsEstimate {
|
|
281
|
-
subtractionAmtInfo?: GuestOrderOptionsOrderOptionNoClaimsEstimateSubtractionAmtInfo;
|
|
282
|
-
refundTypeLabel?: string;
|
|
283
|
-
refundMainPayAmt?: number;
|
|
284
|
-
refundType?: string;
|
|
285
|
-
deliveryAmtInfo?: GuestOrderOptionsOrderOptionNoClaimsEstimateDeliveryAmtInfo;
|
|
286
|
-
refundSubPayAmt?: number;
|
|
287
|
-
refundPayAmt?: number;
|
|
288
|
-
additionalPayAmt?: number;
|
|
289
|
-
refundPayType?: string;
|
|
290
|
-
productAmtInfo?: GuestOrderOptionsOrderOptionNoClaimsEstimateProductAmtInfo;
|
|
291
|
-
}
|
|
292
|
-
export interface GuestOrderOptionsOrderOptionNoClaimsEstimateDeliveryAmtInfo {
|
|
293
|
-
afterDeliveryAmt?: number;
|
|
294
|
-
beforeDeliveryAmt?: number;
|
|
295
|
-
totalAmt?: number;
|
|
296
|
-
exchangeDeliveryAmt?: number;
|
|
297
|
-
buyerReturn?: boolean;
|
|
298
|
-
returnDeliveryAmt?: number;
|
|
299
|
-
payOnDelivery?: boolean;
|
|
300
|
-
sellerFault?: boolean;
|
|
301
|
-
refundDeliveryAmt?: number;
|
|
302
|
-
exchangeAdjustAmt?: number;
|
|
303
|
-
returnAdjustAmt?: number;
|
|
304
|
-
}
|
|
305
|
-
export interface GuestOrderOptionsOrderOptionNoClaimsEstimateProductAmtInfo {
|
|
306
|
-
discountAmt?: number;
|
|
307
|
-
totalAmt?: number;
|
|
308
|
-
immediateDiscountAmt?: number;
|
|
309
|
-
exchangeImmediateDiscountedPrice?: number;
|
|
310
|
-
additionalDiscountAmt?: number;
|
|
311
|
-
immediateDiscountedPrice?: number;
|
|
312
|
-
standardPrice?: number;
|
|
313
|
-
exchangeAdjustAmt?: number;
|
|
314
|
-
productCouponDiscountAmt?: number;
|
|
315
|
-
exchangeDiscountAmt?: number;
|
|
316
|
-
}
|
|
317
|
-
export interface GuestOrderOptionsOrderOptionNoClaimsEstimateSubtractionAmtInfo {
|
|
318
|
-
totalAmt?: number;
|
|
319
|
-
deliveryCouponAmt?: number;
|
|
320
|
-
refundAdjustReason?: string;
|
|
321
|
-
refundAdjustAmt?: number;
|
|
322
|
-
cartCouponAmt?: number;
|
|
323
|
-
}
|
|
324
|
-
export interface ProfileClaimsRequest {
|
|
325
|
-
claimTypes: string;
|
|
326
|
-
endYmd: string;
|
|
327
|
-
hasTotalCount: string;
|
|
328
|
-
pageNumber: string;
|
|
329
|
-
pageSize: string;
|
|
330
|
-
}
|
|
331
|
-
export interface ProfileClaims {
|
|
332
|
-
totalCount?: number;
|
|
333
|
-
items?: Array<ProfileClaimsItems>;
|
|
334
|
-
}
|
|
335
|
-
export interface ProfileClaimsClaimPriceInfo {
|
|
336
|
-
subtractionAmtInfo?: ProfileClaimsClaimPriceInfoSubtractionAmtInfo;
|
|
337
|
-
refundTypeLabel?: string;
|
|
338
|
-
refundMainPayAmt?: number;
|
|
339
|
-
refundType?: string;
|
|
340
|
-
deliveryAmtInfo?: ProfileClaimsClaimPriceInfoDeliveryAmtInfo;
|
|
341
|
-
refundSubPayAmt?: number;
|
|
342
|
-
refundPayAmt?: number;
|
|
343
|
-
additionalPayAmt?: number;
|
|
344
|
-
refundPayType?: string;
|
|
345
|
-
productAmtInfo?: ProfileClaimsClaimPriceInfoProductAmtInfo;
|
|
346
|
-
}
|
|
347
|
-
export interface ProfileClaimsClaimPriceInfoDeliveryAmtInfo {
|
|
348
|
-
afterDeliveryAmt?: number;
|
|
349
|
-
beforeDeliveryAmt?: number;
|
|
350
|
-
totalAmt?: number;
|
|
351
|
-
exchangeDeliveryAmt?: number;
|
|
352
|
-
buyerReturn?: boolean;
|
|
353
|
-
returnDeliveryAmt?: number;
|
|
354
|
-
payOnDelivery?: boolean;
|
|
355
|
-
sellerFault?: boolean;
|
|
356
|
-
refundDeliveryAmt?: number;
|
|
357
|
-
exchangeAdjustAmt?: number;
|
|
358
|
-
returnAdjustAmt?: number;
|
|
359
|
-
}
|
|
360
|
-
export interface ProfileClaimsClaimPriceInfoProductAmtInfo {
|
|
361
|
-
discountAmt?: number;
|
|
362
|
-
totalAmt?: number;
|
|
363
|
-
immediateDiscountAmt?: number;
|
|
364
|
-
exchangeImmediateDiscountedPrice?: number;
|
|
365
|
-
additionalDiscountAmt?: number;
|
|
366
|
-
immediateDiscountedPrice?: number;
|
|
367
|
-
standardPrice?: number;
|
|
368
|
-
exchangeAdjustAmt?: number;
|
|
369
|
-
productCouponDiscountAmt?: number;
|
|
370
|
-
exchangeDiscountAmt?: number;
|
|
371
|
-
}
|
|
372
|
-
export interface ProfileClaimsClaimPriceInfoSubtractionAmtInfo {
|
|
373
|
-
totalAmt?: number;
|
|
374
|
-
deliveryCouponAmt?: number;
|
|
375
|
-
refundAdjustReason?: string;
|
|
376
|
-
refundAdjustAmt?: number;
|
|
377
|
-
cartCouponAmt?: number;
|
|
378
|
-
}
|
|
379
|
-
export interface ProfileClaimsItems {
|
|
380
|
-
claimReasonDetail?: string;
|
|
381
|
-
claimedOptions?: Array<GuestClaimsClaimNoResultClaimedOptions>;
|
|
382
|
-
claimType?: string;
|
|
383
|
-
claimNo?: number;
|
|
384
|
-
orderNo?: string;
|
|
385
|
-
claimReasonType?: string;
|
|
386
|
-
orderYmdt?: string;
|
|
387
|
-
claimYmdt?: string;
|
|
388
|
-
claimPriceInfo?: ProfileClaimsClaimPriceInfo;
|
|
389
|
-
}
|
|
390
|
-
export interface ProfileClaimsClaimNoCheckWithdraw {
|
|
391
|
-
claimNo?: number;
|
|
392
|
-
afterClaimNos?: Array<object | boolean | string | number>;
|
|
393
|
-
validationType?: string;
|
|
394
|
-
shippingNos?: Array<object | boolean | string | number>;
|
|
395
|
-
}
|
|
396
|
-
export interface ProfileClaimsClaimNoPath {
|
|
397
|
-
claimNo: string;
|
|
398
|
-
}
|
|
399
|
-
export interface ProfileClaimsEstimate {
|
|
400
|
-
responsibleObjectType?: string;
|
|
401
|
-
claimedProductOptions?: Array<ProfileClaimsEstimateClaimedProductOptions>;
|
|
402
|
-
claimType?: string;
|
|
403
|
-
productCnt?: number;
|
|
404
|
-
claimReasonType?: string;
|
|
405
|
-
returnWayType?: string;
|
|
406
|
-
}
|
|
407
|
-
export interface ProfileClaimsEstimateClaimedProductOptions {
|
|
408
|
-
productCnt?: number;
|
|
409
|
-
orderProductOptionNo?: number;
|
|
410
|
-
}
|
|
411
|
-
export interface ProfileClaimsReturn {
|
|
412
|
-
claimReasonDetail?: string;
|
|
413
|
-
responsibleObjectType?: string;
|
|
414
|
-
bankAccountInfo?: ProfileClaimsReturnBankAccountInfo;
|
|
415
|
-
productCnt?: number;
|
|
416
|
-
claimReasonType?: string;
|
|
417
|
-
returnWayType?: string;
|
|
418
|
-
deliveryCompanyType?: string;
|
|
419
|
-
claimImageUrls?: Array<object | boolean | string | number>;
|
|
420
|
-
returnAddress?: ProfileClaimsReturnReturnAddress;
|
|
421
|
-
claimedProductOptions?: Array<ProfileClaimsEstimateClaimedProductOptions>;
|
|
422
|
-
claimType?: string;
|
|
423
|
-
saveBankAccountInfo?: boolean;
|
|
424
|
-
invoiceNo?: string;
|
|
425
|
-
}
|
|
426
|
-
export interface ProfileClaimsReturnBankAccountInfo {
|
|
427
|
-
bankAccount?: string;
|
|
428
|
-
bankDepositorName?: string;
|
|
429
|
-
bank?: string;
|
|
430
|
-
bankName?: string;
|
|
431
|
-
}
|
|
432
|
-
export interface ProfileClaimsReturnReturnAddress {
|
|
433
|
-
receiverAddress?: string;
|
|
434
|
-
receiverJibunAddress?: string;
|
|
435
|
-
addressNo?: number;
|
|
436
|
-
receiverName?: string;
|
|
437
|
-
customsIdNumber?: string;
|
|
438
|
-
countryCd?: string;
|
|
439
|
-
receiverZipCd?: string;
|
|
440
|
-
addressName?: string;
|
|
441
|
-
receiverDetailAddress?: string;
|
|
442
|
-
deliveryMemo?: string;
|
|
443
|
-
receiverContact?: string;
|
|
444
|
-
}
|
|
445
|
-
export interface ProfileOrderOptionsOrderOptionNoClaims {
|
|
446
|
-
deliveryCompanyTypes?: Array<object | boolean | string | number>;
|
|
447
|
-
originalOption?: ProfileOrderOptionsOrderOptionNoClaimsOriginalOption;
|
|
448
|
-
claimReasonTypes?: Array<ProfileOrderOptionsOrderOptionNoClaimsClaimReasonTypes>;
|
|
449
|
-
returnAddress?: ProfileOrderOptionsOrderOptionNoClaimsReturnAddress;
|
|
450
|
-
claimType?: string;
|
|
451
|
-
payType?: string;
|
|
452
|
-
exchangeAddress?: ProfileOrderOptionsOrderOptionNoClaimsExchangeAddress;
|
|
453
|
-
claimableOptions?: Array<GuestClaimsClaimNoResultClaimedOptions>;
|
|
454
|
-
responsibleObjectTypes?: Array<object | boolean | string | number>;
|
|
455
|
-
availableBanks?: Array<ProfileOrderOptionsOrderOptionNoClaimsAvailableBanks>;
|
|
456
|
-
refundAccount?: ProfileOrderOptionsOrderOptionNoClaimsRefundAccount;
|
|
457
|
-
deliveryCompanyTypeWithLabels?: Array<ProfileOrderOptionsOrderOptionNoClaimsDeliveryCompanyTypeWithLabels>;
|
|
458
|
-
returnWarehouse?: ProfileOrderOptionsOrderOptionNoClaimsReturnWarehouse;
|
|
459
|
-
}
|
|
460
|
-
export interface ProfileOrderOptionsOrderOptionNoClaimsAvailableBanks {
|
|
461
|
-
bank?: string;
|
|
462
|
-
label?: string;
|
|
463
|
-
}
|
|
464
|
-
export interface ProfileOrderOptionsOrderOptionNoClaimsClaimReasonTypes {
|
|
465
|
-
responsibleObjectType?: string;
|
|
466
|
-
claimReasonType?: string;
|
|
467
|
-
label?: string;
|
|
468
|
-
}
|
|
469
|
-
export interface ProfileOrderOptionsOrderOptionNoClaimsDeliveryCompanyTypeWithLabels {
|
|
470
|
-
deliveryCompanyType?: string;
|
|
471
|
-
label?: string;
|
|
472
|
-
}
|
|
473
|
-
export interface ProfileOrderOptionsOrderOptionNoClaimsExchangeAddress {
|
|
474
|
-
receiverAddress?: string;
|
|
475
|
-
addressView?: string;
|
|
476
|
-
receiverJibunAddress?: string;
|
|
477
|
-
receiverName?: string;
|
|
478
|
-
customsIdNumber?: string;
|
|
479
|
-
countryCd?: string;
|
|
480
|
-
receiverZipCd?: string;
|
|
481
|
-
receiverDetailAddress?: string;
|
|
482
|
-
deliveryMemo?: string;
|
|
483
|
-
receiverContact?: string;
|
|
484
|
-
}
|
|
485
|
-
export interface ProfileOrderOptionsOrderOptionNoClaimsOriginalOption {
|
|
486
|
-
reservationDeliveryYmdt?: string;
|
|
487
|
-
claimNo?: number;
|
|
488
|
-
inputs?: Array<GuestClaimsClaimNoResultInputs>;
|
|
489
|
-
claimReasonType?: string;
|
|
490
|
-
deliverable?: boolean;
|
|
491
|
-
optionUsed?: boolean;
|
|
492
|
-
productName?: string;
|
|
493
|
-
claimStatusTypeLabel?: string;
|
|
494
|
-
claimStatusType?: string;
|
|
495
|
-
additionalProductNo?: number;
|
|
496
|
-
optionType?: string;
|
|
497
|
-
payType?: string;
|
|
498
|
-
deliveryInternationalYn?: boolean;
|
|
499
|
-
price?: GuestClaimsClaimNoResultPrice;
|
|
500
|
-
imageUrl?: string;
|
|
501
|
-
member?: boolean;
|
|
502
|
-
reservation?: boolean;
|
|
503
|
-
nextActions?: Array<GuestClaimsClaimNoResultNextActions>;
|
|
504
|
-
refundable?: boolean;
|
|
505
|
-
optionNo?: number;
|
|
506
|
-
orderOptionNo?: number;
|
|
507
|
-
productNo?: number;
|
|
508
|
-
claimReasonDetail?: string;
|
|
509
|
-
optionTitle?: string;
|
|
510
|
-
delivery?: GuestClaimsClaimNoResultDelivery;
|
|
511
|
-
brandName?: string;
|
|
512
|
-
pgType?: string;
|
|
513
|
-
orderNo?: string;
|
|
514
|
-
orderStatusType?: string;
|
|
515
|
-
optionValue?: string;
|
|
516
|
-
orderCnt?: number;
|
|
517
|
-
exchangeYn?: string;
|
|
518
|
-
accumulationAmt?: number;
|
|
519
|
-
orderStatusDate?: GuestClaimsClaimNoResultOrderStatusDate;
|
|
520
|
-
brandNameEn?: string;
|
|
521
|
-
productNameEn?: string;
|
|
522
|
-
optionName?: string;
|
|
523
|
-
optionManagementCd?: string;
|
|
524
|
-
}
|
|
525
|
-
export interface ProfileOrderOptionsOrderOptionNoClaimsRefundAccount {
|
|
526
|
-
bankAccount?: string;
|
|
527
|
-
bankDepositorName?: string;
|
|
528
|
-
bank?: string;
|
|
529
|
-
bankName?: string;
|
|
530
|
-
}
|
|
531
|
-
export interface ProfileOrderOptionsOrderOptionNoClaimsReturnAddress {
|
|
532
|
-
receiverAddress?: string;
|
|
533
|
-
addressView?: string;
|
|
534
|
-
receiverJibunAddress?: string;
|
|
535
|
-
receiverName?: string;
|
|
20
|
+
export interface ClaimedProductOption {
|
|
21
|
+
productCnt: number;
|
|
22
|
+
orderProductOptionNo: number;
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* path: /profile/claims/estimate
|
|
26
|
+
*/
|
|
27
|
+
export interface PostProfileClaimsEstimateRequest {
|
|
28
|
+
requestBody: {
|
|
29
|
+
responsibleObjectType: ResponsibleObjectType;
|
|
30
|
+
claimedProductOptions: ClaimedProductOption[];
|
|
31
|
+
claimType: ClaimType;
|
|
32
|
+
productCnt: number;
|
|
33
|
+
claimReasonType: ClaimReasonType;
|
|
34
|
+
returnWayType: ReturnWayType;
|
|
35
|
+
};
|
|
36
|
+
}
|
|
37
|
+
export declare type PostProfileClaimsEstimateResponse = ClaimPriceInfo;
|
|
38
|
+
export interface ClaimPriceInfo {
|
|
39
|
+
subtractionAmtInfo: SubtractionAmtInfo;
|
|
40
|
+
refundTypeLabel: string;
|
|
41
|
+
refundMainPayAmt: number;
|
|
42
|
+
refundType: RefundType;
|
|
43
|
+
deliveryAmtInfo: DeliveryAmtInfo;
|
|
44
|
+
refundSubPayAmt: number;
|
|
45
|
+
refundPayAmt: number;
|
|
46
|
+
additionalPayAmt: number;
|
|
47
|
+
refundPayType: PayType;
|
|
48
|
+
productAmtInfo: ProductAmtInfo;
|
|
49
|
+
}
|
|
50
|
+
/**
|
|
51
|
+
* path: /profile/claims/return
|
|
52
|
+
*/
|
|
53
|
+
export interface PostProfileClaimsReturnRequest {
|
|
54
|
+
requestBody: PostProfileClaimsReturnRequestBody;
|
|
55
|
+
}
|
|
56
|
+
export interface PostProfileClaimsReturnRequestBody extends ClaimDefaultRequestBody {
|
|
57
|
+
claimedProductOptions: ClaimedProductOption[];
|
|
58
|
+
}
|
|
59
|
+
export interface ClaimDefaultRequestBody {
|
|
60
|
+
claimReasonDetail: string;
|
|
61
|
+
responsibleObjectType: ResponsibleObjectType;
|
|
62
|
+
bankAccountInfo: BankAccountInfo;
|
|
63
|
+
productCnt: number;
|
|
64
|
+
claimReasonType: ClaimReasonType;
|
|
65
|
+
returnWayType: ReturnWayType;
|
|
66
|
+
deliveryCompanyType?: DeliveryCompanyType;
|
|
67
|
+
claimImageUrls: string[];
|
|
68
|
+
returnAddress: ClaimAddress;
|
|
69
|
+
claimType: ClaimType;
|
|
70
|
+
saveBankAccountInfo: boolean;
|
|
71
|
+
invoiceNo: string;
|
|
72
|
+
}
|
|
73
|
+
export interface ClaimAddress {
|
|
74
|
+
note: string;
|
|
75
|
+
addressStr: string;
|
|
76
|
+
address: string;
|
|
536
77
|
customsIdNumber?: string;
|
|
537
|
-
|
|
538
|
-
receiverZipCd?: string;
|
|
539
|
-
receiverDetailAddress?: string;
|
|
540
|
-
deliveryMemo?: string;
|
|
541
|
-
receiverContact?: string;
|
|
542
|
-
}
|
|
543
|
-
export interface ProfileOrderOptionsOrderOptionNoClaimsReturnWarehouse {
|
|
544
|
-
summary?: string;
|
|
545
|
-
address?: string;
|
|
546
|
-
receiverName?: string;
|
|
547
|
-
contact?: string;
|
|
548
|
-
jibunAddress?: string;
|
|
78
|
+
name: string;
|
|
549
79
|
detailAddress?: string;
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
export interface
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
80
|
+
jibunAddress?: string;
|
|
81
|
+
zipCd: string;
|
|
82
|
+
contact1: string;
|
|
83
|
+
contact2?: string;
|
|
84
|
+
}
|
|
85
|
+
/**
|
|
86
|
+
* path: /profile/claims/{claimNo}/account
|
|
87
|
+
*/
|
|
88
|
+
export interface PutProfileClaimsClaimNoAccountRequest {
|
|
89
|
+
pathVariable: {
|
|
90
|
+
claimNo: string;
|
|
91
|
+
};
|
|
92
|
+
requestBody: {
|
|
93
|
+
depositorName: string;
|
|
94
|
+
bank: Bank;
|
|
95
|
+
account: string;
|
|
96
|
+
};
|
|
97
|
+
}
|
|
98
|
+
/**
|
|
99
|
+
* path: /profile/claims/{claimNo}/check-withdraw
|
|
100
|
+
*/
|
|
101
|
+
export interface GetProfileClaimsClaimNoCheckWithdrawRequest {
|
|
102
|
+
pathVariable: {
|
|
103
|
+
claimNo: string;
|
|
104
|
+
};
|
|
105
|
+
}
|
|
106
|
+
export interface GetProfileClaimsClaimNoCheckWithdrawResponse {
|
|
107
|
+
claimNo: number;
|
|
108
|
+
afterClaimNos: number[];
|
|
109
|
+
validationType: ClaimWithdrawValidationType;
|
|
110
|
+
shippingNos: number[];
|
|
111
|
+
}
|
|
112
|
+
/**
|
|
113
|
+
* path: /profile/claims/{claimNo}/result
|
|
114
|
+
*/
|
|
115
|
+
export interface GetProfileClaimsClaimNoResultRequest {
|
|
116
|
+
pathVariable: {
|
|
117
|
+
claimNo: string;
|
|
118
|
+
};
|
|
119
|
+
}
|
|
120
|
+
export declare type GetProfileClaimsClaimNoResultResponse = ClaimResult;
|
|
121
|
+
export interface ClaimResult {
|
|
122
|
+
claimReasonDetail: string;
|
|
123
|
+
returnDelivery: ReturnDelivery;
|
|
124
|
+
claimedOptions: ClaimOption[];
|
|
125
|
+
claimNo: number;
|
|
126
|
+
exchangedOption: ClaimOption;
|
|
127
|
+
claimReasonType: ClaimReasonType;
|
|
128
|
+
returnWayType: ReturnWayType;
|
|
129
|
+
orderProductOptionNo: number;
|
|
130
|
+
claimYmdt: DateYmdt;
|
|
131
|
+
exchangePayInfo: ExchangePayInfo;
|
|
132
|
+
exchangeBeforeDelivery: boolean;
|
|
133
|
+
claimImageUrls: string[];
|
|
134
|
+
ClaimOption: ClaimOption;
|
|
135
|
+
returnAddress: ClaimAddress;
|
|
136
|
+
refundType: RefundType;
|
|
137
|
+
claimType: ClaimType;
|
|
138
|
+
exchangeAddress: ClaimAddress;
|
|
139
|
+
claimClassType: ClaimClassType;
|
|
140
|
+
claimPriceInfo: ClaimPriceInfo;
|
|
141
|
+
refundBankAccount: BankAccountInfo;
|
|
142
|
+
}
|
|
143
|
+
export interface ExchangePayInfo {
|
|
144
|
+
exchangePayAmt: number;
|
|
145
|
+
bankAccount: BankAccountInfo;
|
|
146
|
+
payType: ExchangePayInfoPayType;
|
|
147
|
+
remitter: string;
|
|
148
|
+
}
|
|
149
|
+
export interface ReturnDelivery {
|
|
150
|
+
deliveryCompanyTypeLabel: DeliveryCompanyTypeLabel;
|
|
151
|
+
deliveryCompanyType: DeliveryCompanyType;
|
|
152
|
+
invoiceNo: string;
|
|
153
|
+
evadesReturnProcess: boolean;
|
|
154
|
+
}
|
|
155
|
+
export interface ClaimOption {
|
|
156
|
+
reservationDeliveryYmdt: DateYmdt;
|
|
157
|
+
claimNo: number;
|
|
158
|
+
isFreeGift: boolean;
|
|
159
|
+
inputs: OptionInputResponse[];
|
|
160
|
+
claimReasonType: ClaimReasonType;
|
|
161
|
+
deliverable: boolean;
|
|
162
|
+
optionUsed: boolean;
|
|
163
|
+
productName: string;
|
|
164
|
+
claimStatusTypeLabel: ClaimStatusTypeLabel;
|
|
165
|
+
claimStatusType: ClaimStatusType;
|
|
166
|
+
additionalProductNo: number;
|
|
167
|
+
optionType: ClaimOptionType;
|
|
168
|
+
payType: PayType;
|
|
169
|
+
deliveryInternationalYn: boolean;
|
|
170
|
+
price: OrderOptionPrice;
|
|
171
|
+
imageUrl: string;
|
|
172
|
+
member: boolean;
|
|
173
|
+
reservation: boolean;
|
|
174
|
+
nextActions: ClaimNextAction[];
|
|
175
|
+
refundable: boolean;
|
|
176
|
+
optionNo: number;
|
|
177
|
+
orderOptionNo: number;
|
|
178
|
+
productNo: number;
|
|
179
|
+
claimReasonDetail: string;
|
|
180
|
+
optionTitle: string;
|
|
181
|
+
delivery: ClaimDeliveryInfo;
|
|
182
|
+
brandName: string;
|
|
183
|
+
pgType: PgType;
|
|
184
|
+
orderNo: string;
|
|
185
|
+
orderStatusType: DefaultOrderStatusType;
|
|
186
|
+
optionValue: string;
|
|
187
|
+
orderCnt: number;
|
|
188
|
+
exchangeYn: Yn;
|
|
189
|
+
accumulationAmt: number;
|
|
190
|
+
orderStatusDate: OrderStatusDate;
|
|
191
|
+
brandNameEn: string;
|
|
192
|
+
productNameEn: string;
|
|
193
|
+
optionNAme: string;
|
|
194
|
+
optionManagementCd: string;
|
|
195
|
+
}
|
|
196
|
+
export interface ClaimNextAction {
|
|
197
|
+
nextActionType: NextActionType;
|
|
198
|
+
uri: string;
|
|
199
|
+
}
|
|
200
|
+
export interface ClaimDeliveryInfo {
|
|
201
|
+
deliveryCompanyTypeLabel: DeliveryCompanyTypeLabel;
|
|
202
|
+
deliveryCompanyType: DeliveryCompanyType;
|
|
203
|
+
retrieveInvoiceUrl: string;
|
|
204
|
+
invoiceNo: string;
|
|
205
|
+
}
|
|
206
|
+
/**
|
|
207
|
+
* path: /profile/claims/{claimNo}/withdraw
|
|
208
|
+
*/
|
|
209
|
+
export interface PutProfileClaimsClaimNoWithdrawRequest {
|
|
210
|
+
pathVariable: {
|
|
211
|
+
claimNo: string;
|
|
212
|
+
};
|
|
213
|
+
}
|
|
214
|
+
/**
|
|
215
|
+
* path: /profile/order-options/{orderOptionNo}/claims
|
|
216
|
+
*/
|
|
217
|
+
export interface GetProfileOrderOptionsOrderOptionNoClaimsRequest {
|
|
218
|
+
pathVariable: {
|
|
219
|
+
orderOptionNo: string;
|
|
220
|
+
};
|
|
221
|
+
queryString: {
|
|
222
|
+
claimType: ClaimType;
|
|
223
|
+
};
|
|
224
|
+
}
|
|
225
|
+
export interface GetProfileOrderOptionsOrderOptionNoClaimsResponse {
|
|
226
|
+
deliveryCompanyTypes: DeliveryCompanyType[];
|
|
227
|
+
originalOption: ClaimOption;
|
|
228
|
+
claimReasonTypes: ClaimReasonType[];
|
|
229
|
+
returnAddress: ClaimAddress;
|
|
230
|
+
claimType: ClaimType;
|
|
231
|
+
payType: PayType;
|
|
232
|
+
exchangeAddress: ClaimAddress;
|
|
233
|
+
claimableOptions: ClaimOption[];
|
|
234
|
+
responsibleObjectTypes: ResponsibleObjectType[];
|
|
235
|
+
availableBanks: BankCdAndLabel;
|
|
236
|
+
refundAccount: BankAccountInfo;
|
|
237
|
+
deliveryCompanyTypeWithLabel: Array<{
|
|
238
|
+
deliveryCompanyType: DeliveryCompanyType;
|
|
239
|
+
label: DeliveryCompanyTypeLabel;
|
|
240
|
+
}>;
|
|
241
|
+
returnWarehouse: ReturnWarehouse;
|
|
242
|
+
}
|
|
243
|
+
export interface ReturnWarehouse {
|
|
244
|
+
summary: string;
|
|
245
|
+
address: string;
|
|
246
|
+
receiverName: string;
|
|
247
|
+
contact: string;
|
|
248
|
+
jibunAddress: string;
|
|
249
|
+
detailAddress: string;
|
|
250
|
+
zipCd: string;
|
|
251
|
+
substitutionText: string;
|
|
252
|
+
}
|
|
253
|
+
/**
|
|
254
|
+
* path: /profile/order-options/{orderOptionNo}/claims/cancel
|
|
255
|
+
*/
|
|
256
|
+
export interface PostProfileOrderOptionsOrderOptionNoClaimsCancelRequest {
|
|
257
|
+
pathVariable: {
|
|
258
|
+
orderOptionNo: string;
|
|
259
|
+
};
|
|
260
|
+
requestBody: PostProfileOrderOptionsOrderOptionNoClaimsCancelRequestBody;
|
|
261
|
+
}
|
|
262
|
+
export interface PostProfileOrderOptionsOrderOptionNoClaimsCancelRequestBody extends CancelRequestDefaultRequestBody {
|
|
263
|
+
productCnt: number;
|
|
264
|
+
}
|
|
265
|
+
export interface CancelRequestDefaultRequestBody {
|
|
266
|
+
claimReasonDetail: string;
|
|
267
|
+
responsibleObjectType: ResponsibleObjectType;
|
|
268
|
+
claimType: ClaimType;
|
|
269
|
+
saveBankAccountInfo: boolean;
|
|
270
|
+
bankAccountInfo: BankAccountInfo;
|
|
271
|
+
claimReasonType: ClaimReasonType;
|
|
272
|
+
refundsImmediately: boolean;
|
|
273
|
+
}
|
|
274
|
+
/**
|
|
275
|
+
* path: /profile/order-options/{orderOptionNo}/claims/estimate
|
|
276
|
+
*/
|
|
277
|
+
export interface GetProfileOrderOptionsOrderOptionNoClaimsEstimateRequest {
|
|
278
|
+
pathVariable: {
|
|
279
|
+
orderOptionNo: string;
|
|
280
|
+
};
|
|
281
|
+
queryString: {
|
|
282
|
+
claimReasonType: ClaimReasonType;
|
|
283
|
+
claimType: ClaimType;
|
|
284
|
+
productCnt: string;
|
|
285
|
+
responsibleObjectType?: ResponsibleObjectType;
|
|
286
|
+
returnWayType?: ReturnWayType;
|
|
287
|
+
};
|
|
288
|
+
}
|
|
289
|
+
export declare type GetProfileOrderOptionsOrderOptionNoClaimsEstimateResponse = ClaimPriceInfo;
|
|
290
|
+
/**
|
|
291
|
+
* path: /profile/order-options/{orderOptionNo}/claims/exchange
|
|
292
|
+
*/
|
|
293
|
+
export interface PostProfileOrderOptionsOrderOptionNoClaimsExchangeRequest {
|
|
294
|
+
pathVariable: {
|
|
295
|
+
orderOptionNo: string;
|
|
296
|
+
};
|
|
297
|
+
requestBody: PostProfileOrderOptionsOrderOptionNoClaimsExchangeRequestBody;
|
|
298
|
+
}
|
|
299
|
+
export interface PostProfileOrderOptionsOrderOptionNoClaimsExchangeRequestBody extends ClaimDefaultRequestBody {
|
|
300
|
+
exchangeAddress: ClaimAddress;
|
|
301
|
+
exchangeOption: ClaimOption;
|
|
302
|
+
}
|
|
303
|
+
/**
|
|
304
|
+
* path: /profile/order-options/{orderOptionNo}/claims/result
|
|
305
|
+
*/
|
|
306
|
+
export interface GetProfileOrderOptionsOrderOptionNoClaimsResultRequest {
|
|
307
|
+
pathVariable: {
|
|
308
|
+
orderOptionNo: string;
|
|
309
|
+
};
|
|
310
|
+
}
|
|
311
|
+
export declare type GetProfileOrderOptionsOrderOptionNoClaimsResultResponse = ClaimResult;
|
|
312
|
+
/**
|
|
313
|
+
* path: /profile/order-options/{orderOptionNo}/claims/return
|
|
314
|
+
*/
|
|
315
|
+
export interface PostProfileOrderOptionsOrderOptionNoClaimsReturnRequest {
|
|
316
|
+
pathVariable: {
|
|
317
|
+
orderOptionNo: string;
|
|
318
|
+
};
|
|
319
|
+
requestBody: ClaimDefaultRequestBody;
|
|
320
|
+
}
|
|
321
|
+
/**
|
|
322
|
+
* path: /profile/order-options/{orderOptionNo}/claims/withdraw
|
|
323
|
+
*/
|
|
324
|
+
export interface PutProfileOrderOptionsOrderOptionNoClaimsWithDrawRequest {
|
|
325
|
+
pathVariable: {
|
|
326
|
+
orderOptionNo: string;
|
|
327
|
+
};
|
|
328
|
+
}
|
|
329
|
+
/**
|
|
330
|
+
* path: /profile/orders/{orderNo}/claims/cancel
|
|
331
|
+
*/
|
|
332
|
+
export interface PostProfileOrdersOrderNoClaimsCancelRequest {
|
|
333
|
+
pathVariable: {
|
|
334
|
+
orderNo: string;
|
|
335
|
+
};
|
|
336
|
+
requestBody: CancelRequestDefaultRequestBody;
|
|
638
337
|
}
|