@shopby/shop-sdk 1.4.0 → 1.7.1
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/manage.d.ts +2 -2
- package/build/src/manage.js.map +1 -1
- package/build/src/order.d.ts +5 -7
- package/build/src/order.js +1 -1
- package/build/src/order.js.map +1 -1
- package/build/src/storage.d.ts +2 -1
- package/build/src/storage.js +9 -0
- package/build/src/storage.js.map +1 -1
- package/build/types/admin.d.ts +2 -2
- package/build/types/enum.d.ts +11 -1
- package/build/types/manage.d.ts +11 -4
- package/build/types/map.d.ts +46 -0
- package/build/types/order.d.ts +282 -1382
- package/build/types/root.d.ts +17 -21
- package/build/types/root.js.map +1 -1
- package/build/types/storage.d.ts +5 -0
- package/package.json +2 -1
package/build/types/order.d.ts
CHANGED
|
@@ -1,513 +1,299 @@
|
|
|
1
|
-
import { AddressType, CashReceiptIssuePurposeType, CountryCode, PayType, PgType, Yn } from './enum';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
accumulationAmtWhenBuyConfirm?: number;
|
|
7
|
-
standardAmt?: number;
|
|
8
|
-
totalPayOnDeliveryAmt?: number;
|
|
9
|
-
totalDeliveryAmt?: number;
|
|
10
|
-
totalPrePaidDeliveryAmt?: number;
|
|
11
|
-
}
|
|
12
|
-
export interface CartSubset {
|
|
13
|
-
deliveryGroups?: Array<CartSubsetDeliveryGroups>;
|
|
14
|
-
price?: CartSubsetPrice1;
|
|
15
|
-
invalidProducts?: Array<CartSubsetOrderProducts>;
|
|
16
|
-
}
|
|
17
|
-
export interface CartSubsetDeliveryCondition {
|
|
18
|
-
deliveryConditionType?: string;
|
|
19
|
-
aboveDeliveryAmt?: number;
|
|
20
|
-
deliveryAmt?: number;
|
|
21
|
-
groupDeliveryAmtType?: string;
|
|
22
|
-
returnDeliveryAmt?: number;
|
|
23
|
-
baseDeliveryAmt?: number;
|
|
24
|
-
remoteDeliveryAmt?: number;
|
|
25
|
-
chargesRemoteDeliveryAmt?: boolean;
|
|
26
|
-
}
|
|
27
|
-
export interface CartSubsetDeliveryDate {
|
|
28
|
-
period?: CartSubsetDeliveryDatePeriod;
|
|
29
|
-
daysOfWeek?: Array<object | boolean | string | number>;
|
|
30
|
-
daysAfterPurchase?: number;
|
|
31
|
-
}
|
|
32
|
-
export interface CartSubsetDeliveryDatePeriod {
|
|
33
|
-
startYmdt?: string;
|
|
34
|
-
endYmdt?: string;
|
|
35
|
-
}
|
|
36
|
-
export interface CartSubsetDeliveryGroups {
|
|
37
|
-
partnerNo?: number;
|
|
38
|
-
deliveryPayType?: string;
|
|
39
|
-
deliveryCondition?: CartSubsetDeliveryCondition;
|
|
40
|
-
deliveryAmt?: number;
|
|
41
|
-
partnerName?: string;
|
|
42
|
-
orderProducts?: Array<CartSubsetOrderProducts>;
|
|
43
|
-
}
|
|
44
|
-
export interface CartSubsetOptionInputs {
|
|
45
|
-
inputValue?: string;
|
|
46
|
-
inputLabel?: string;
|
|
47
|
-
required?: boolean;
|
|
48
|
-
}
|
|
49
|
-
export interface CartSubsetOrderProductOptions {
|
|
50
|
-
reservationDeliveryYmdt?: string;
|
|
51
|
-
optionTitle?: string;
|
|
52
|
-
accumulationAmtWhenBuyConfirm?: number;
|
|
53
|
-
validInfo?: CartSubsetValidInfo;
|
|
54
|
-
optionValue?: string;
|
|
55
|
-
orderCnt?: number;
|
|
56
|
-
optionInputs?: Array<CartSubsetOptionInputs>;
|
|
57
|
-
soldOut?: boolean;
|
|
58
|
-
optionType?: string;
|
|
59
|
-
price?: CartSubsetPrice;
|
|
60
|
-
imageUrl?: string;
|
|
61
|
-
setOptions?: Array<CartSubsetSetOptions>;
|
|
62
|
-
reservation?: boolean;
|
|
63
|
-
stockCnt?: number;
|
|
64
|
-
optionNo?: number;
|
|
65
|
-
optionName?: string;
|
|
66
|
-
optionManagementCd?: string;
|
|
67
|
-
cartNo?: number;
|
|
68
|
-
productNo?: number;
|
|
69
|
-
}
|
|
70
|
-
export interface CartSubsetOrderProducts {
|
|
71
|
-
buyAmt?: number;
|
|
72
|
-
brandName?: string;
|
|
73
|
-
shippingAreaType?: string;
|
|
74
|
-
deliverable?: boolean;
|
|
75
|
-
optionUsed?: boolean;
|
|
76
|
-
liked?: boolean;
|
|
77
|
-
productName?: string;
|
|
78
|
-
hsCode?: string;
|
|
79
|
-
eanCode?: string;
|
|
80
|
-
imageUrl?: string;
|
|
81
|
-
brandNameEn?: string;
|
|
82
|
-
selectType?: string;
|
|
83
|
-
orderProductOptions?: Array<CartSubsetOrderProductOptions>;
|
|
84
|
-
refundable?: boolean;
|
|
85
|
-
deliveryDate?: CartSubsetDeliveryDate;
|
|
86
|
-
brandNo?: number;
|
|
87
|
-
deliveryInternational?: boolean;
|
|
88
|
-
productNo?: number;
|
|
89
|
-
}
|
|
90
|
-
export interface CartSubsetPrice {
|
|
91
|
-
buyAmt?: number;
|
|
92
|
-
additionalDiscountAmt?: number;
|
|
93
|
-
immediateDiscountAmt?: number;
|
|
94
|
-
salePrice?: number;
|
|
95
|
-
standardAmt?: number;
|
|
96
|
-
addPrice?: number;
|
|
97
|
-
}
|
|
98
|
-
export interface CartSubsetPrice1 {
|
|
99
|
-
buyAmt?: number;
|
|
100
|
-
discountAmt?: number;
|
|
101
|
-
totalAmt?: number;
|
|
102
|
-
accumulationAmtWhenBuyConfirm?: number;
|
|
103
|
-
standardAmt?: number;
|
|
104
|
-
totalPayOnDeliveryAmt?: number;
|
|
105
|
-
totalDeliveryAmt?: number;
|
|
106
|
-
totalPrePaidDeliveryAmt?: number;
|
|
107
|
-
}
|
|
108
|
-
export interface CartSubsetSetOptions {
|
|
109
|
-
usesOption?: boolean;
|
|
110
|
-
mallOptionNo?: number;
|
|
111
|
-
productManagementCd?: string;
|
|
112
|
-
optionValue?: string;
|
|
113
|
-
count?: number;
|
|
114
|
-
optionPrice?: number;
|
|
115
|
-
sku?: string;
|
|
116
|
-
optionName?: string;
|
|
117
|
-
optionManagementCd?: string;
|
|
118
|
-
mallProductNo?: number;
|
|
119
|
-
stockNo?: number;
|
|
120
|
-
productName?: string;
|
|
121
|
-
}
|
|
122
|
-
export interface CartSubsetValidInfo {
|
|
123
|
-
valid?: boolean;
|
|
124
|
-
validYn?: string;
|
|
125
|
-
errorCode?: string;
|
|
126
|
-
message?: string;
|
|
127
|
-
orderCntChangeable?: boolean;
|
|
128
|
-
}
|
|
129
|
-
export interface CartValidate {
|
|
130
|
-
result?: boolean;
|
|
131
|
-
}
|
|
132
|
-
export interface GuestCart {
|
|
133
|
-
deliveryGroups?: Array<GuestCartDeliveryGroups>;
|
|
134
|
-
price?: CartSubsetPrice1;
|
|
135
|
-
invalidProducts?: Array<GuestCartOrderProducts>;
|
|
136
|
-
}
|
|
137
|
-
export interface GuestCartDeliveryGroups {
|
|
138
|
-
partnerNo?: number;
|
|
139
|
-
deliveryPayType?: string;
|
|
140
|
-
deliveryCondition?: CartSubsetDeliveryCondition;
|
|
141
|
-
deliveryAmt?: number;
|
|
142
|
-
partnerName?: string;
|
|
143
|
-
orderProducts?: Array<GuestCartOrderProducts>;
|
|
144
|
-
}
|
|
145
|
-
export interface GuestCartOptionInputs {
|
|
146
|
-
inputValue?: string;
|
|
147
|
-
inputLabel?: string;
|
|
148
|
-
required?: string;
|
|
149
|
-
}
|
|
150
|
-
export interface GuestCartOrderProductOptions {
|
|
151
|
-
reservationDeliveryYmdt?: string;
|
|
152
|
-
optionTitle?: string;
|
|
153
|
-
accumulationAmtWhenBuyConfirm?: number;
|
|
154
|
-
validInfo?: CartSubsetValidInfo;
|
|
155
|
-
optionValue?: string;
|
|
156
|
-
orderCnt?: number;
|
|
157
|
-
optionInputs?: Array<GuestCartOptionInputs>;
|
|
158
|
-
soldOut?: boolean;
|
|
159
|
-
optionType?: string;
|
|
160
|
-
price?: CartSubsetPrice;
|
|
161
|
-
imageUrl?: string;
|
|
162
|
-
reservation?: boolean;
|
|
163
|
-
stockCnt?: number;
|
|
164
|
-
optionNo?: number;
|
|
165
|
-
optionName?: string;
|
|
166
|
-
optionManagementCd?: string;
|
|
167
|
-
cartNo?: number;
|
|
168
|
-
productNo?: number;
|
|
169
|
-
}
|
|
170
|
-
export interface GuestCartOrderProducts {
|
|
171
|
-
buyAmt?: number;
|
|
172
|
-
brandName?: string;
|
|
173
|
-
shippingAreaType?: string;
|
|
174
|
-
deliverable?: boolean;
|
|
175
|
-
optionUsed?: boolean;
|
|
176
|
-
liked?: boolean;
|
|
177
|
-
productName?: string;
|
|
178
|
-
imageUrl?: string;
|
|
179
|
-
brandNameEn?: string;
|
|
180
|
-
selectType?: string;
|
|
181
|
-
orderProductOptions?: Array<GuestCartOrderProductOptions>;
|
|
182
|
-
refundable?: boolean;
|
|
183
|
-
deliveryDate?: CartSubsetDeliveryDate;
|
|
184
|
-
brandNo?: number;
|
|
185
|
-
deliveryInternational?: boolean;
|
|
186
|
-
productNo?: number;
|
|
187
|
-
}
|
|
188
|
-
export interface GuestOrdersOrderNo {
|
|
189
|
-
orderRequestType?: string;
|
|
190
|
-
password?: string;
|
|
191
|
-
name?: string;
|
|
192
|
-
mobileNo?: string;
|
|
193
|
-
email?: string;
|
|
194
|
-
}
|
|
195
|
-
export interface GuestOrdersOrderNoCashReceipt {
|
|
196
|
-
cashReceiptKey?: string;
|
|
197
|
-
cashReceiptIssuePurposeType?: string;
|
|
198
|
-
}
|
|
199
|
-
export interface OrderConfigsResponse {
|
|
1
|
+
import { AddressType, AgreementType, CashReceiptIssuePurposeType, CountryCode, DaysOfWeek, DeliveryConditionType, DeliveryPayType, GroupDeliveryAmtType, OptionType, OrderChannelType, PayType, PgType, RecurringCycle, RecurringCycleType, ShippingAreaType, Yn } from './enum';
|
|
2
|
+
/**
|
|
3
|
+
* path: /order-configs
|
|
4
|
+
*/
|
|
5
|
+
export interface GetOrderConfigsResponse {
|
|
200
6
|
naverPay?: OrderConfigsNaverPay;
|
|
201
7
|
}
|
|
202
8
|
export interface OrderConfigsNaverPay {
|
|
203
9
|
buttonKey?: string;
|
|
204
10
|
}
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
export interface
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
couponIssueNo?: number;
|
|
217
|
-
mallProductNo?: number;
|
|
218
|
-
}
|
|
219
|
-
export interface OrderSheetsProducts {
|
|
220
|
-
recurringPaymentDelivery?: RecurringPaymentsOrderSheetsOrderSheetNoRecurringPaymentDelivery;
|
|
221
|
-
rentalInfo?: OrderSheetsOrderSheetNoCalculateRentalInfo;
|
|
222
|
-
channelType?: string;
|
|
223
|
-
orderCnt?: number;
|
|
224
|
-
optionInputs?: Array<RecurringPaymentsOrderSheetsOrderSheetNoOptionInputs>;
|
|
225
|
-
optionNo?: number;
|
|
226
|
-
productNo?: number;
|
|
11
|
+
/**
|
|
12
|
+
* path: /order-sheets
|
|
13
|
+
*/
|
|
14
|
+
export interface PostOrderSheetsRequest {
|
|
15
|
+
requestBody: {
|
|
16
|
+
productCoupons?: ProductCoupon[];
|
|
17
|
+
trackingKey?: string;
|
|
18
|
+
cartNos?: number[];
|
|
19
|
+
channelType?: OrderChannelType;
|
|
20
|
+
products?: OrderSheetsProduct[];
|
|
21
|
+
};
|
|
227
22
|
}
|
|
228
|
-
export interface
|
|
229
|
-
|
|
230
|
-
couponRequest?: OrderSheetsOrderSheetNoCalculateCouponRequest;
|
|
231
|
-
accumulationUseAmt?: number;
|
|
232
|
-
shippingAddresses?: Array<OrderSheetsOrderSheetNoCalculateShippingAddresses>;
|
|
23
|
+
export interface PostOrderSheetsResponse {
|
|
24
|
+
orderSheetNo: string;
|
|
233
25
|
}
|
|
234
|
-
export interface
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
defaultYn?: string;
|
|
238
|
-
addressType?: string;
|
|
239
|
-
receiverName?: string;
|
|
240
|
-
customsIdNumber?: string;
|
|
241
|
-
countryCd?: string;
|
|
242
|
-
receiverZipCd?: string;
|
|
243
|
-
addressName?: string;
|
|
244
|
-
receiverDetailAddress?: string;
|
|
245
|
-
receiverContact1?: string;
|
|
246
|
-
receiverContact2?: string;
|
|
26
|
+
export interface ProductCoupon {
|
|
27
|
+
couponIssueNo: number;
|
|
28
|
+
mallProductNo: number;
|
|
247
29
|
}
|
|
248
|
-
export interface
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
30
|
+
export interface OrderSheetsProduct {
|
|
31
|
+
recurringPaymentDelivery?: RecurringPaymentDelivery;
|
|
32
|
+
channelType: OrderChannelType;
|
|
33
|
+
orderCnt: number;
|
|
34
|
+
optionInputs?: OptionInput[];
|
|
35
|
+
optionNo: number;
|
|
36
|
+
productNo: number;
|
|
253
37
|
}
|
|
254
|
-
export interface
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
38
|
+
export interface RecurringPaymentDelivery {
|
|
39
|
+
date: number;
|
|
40
|
+
cycleType: RecurringCycleType;
|
|
41
|
+
firstRecurringDate: string;
|
|
42
|
+
cycle: RecurringCycle;
|
|
258
43
|
}
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
44
|
+
/**
|
|
45
|
+
* path: /order-sheets/{orderSheetNo}
|
|
46
|
+
*/
|
|
47
|
+
export interface GetOrderSheetsOrderSheetNoRequest {
|
|
48
|
+
pathVariable: {
|
|
49
|
+
orderSheetNo: string;
|
|
50
|
+
};
|
|
51
|
+
queryString: {
|
|
52
|
+
includeMemberAddress?: boolean;
|
|
53
|
+
};
|
|
267
54
|
}
|
|
268
|
-
export interface
|
|
269
|
-
|
|
270
|
-
|
|
55
|
+
export interface GetOrderSheetsOrderSheetNoResponse {
|
|
56
|
+
deliveryGroups: DeliveryGroup[];
|
|
57
|
+
sellerPrivacyUsagePartners: Array<{
|
|
58
|
+
partnerName: string;
|
|
59
|
+
}>;
|
|
60
|
+
appliedCoupons: AppliedCoupon;
|
|
61
|
+
availablePayTypes: Array<{
|
|
62
|
+
payType: PayType;
|
|
63
|
+
pgTypes: PgType;
|
|
64
|
+
}>;
|
|
65
|
+
tradeBankAccountInfos: TradeBankAccountInfo[];
|
|
66
|
+
invalidProducts: OrderProduct[];
|
|
67
|
+
freeGiftInfos: FreeGiftInfo[];
|
|
68
|
+
ordererContact: OrdererContact;
|
|
69
|
+
agreementTypes: AgreementType;
|
|
70
|
+
requireCustomsIdNumber: boolean;
|
|
71
|
+
lastPayType: PayType;
|
|
72
|
+
orderSheetPromotionSummary?: OrderSheetPromotionSummary;
|
|
73
|
+
applyCashReceiptForAccount: boolean;
|
|
74
|
+
orderSheetAddress: OrderSheetAddress;
|
|
75
|
+
paymentInfo: PaymentInfo;
|
|
76
|
+
foreignPartners: ForeignPartner[];
|
|
77
|
+
}
|
|
78
|
+
export interface ForeignPartner {
|
|
79
|
+
partnerName: string;
|
|
80
|
+
privacyManagerPhoneNo: string;
|
|
81
|
+
privacyManagerName: string;
|
|
82
|
+
countryCd: CountryCode;
|
|
271
83
|
}
|
|
272
|
-
export interface
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
84
|
+
export interface PaymentInfo {
|
|
85
|
+
paymentAmt: number;
|
|
86
|
+
cartAmt: number;
|
|
87
|
+
productAmt: number;
|
|
88
|
+
deliveryCouponAmt: number;
|
|
89
|
+
accumulationAmtWhenBuyConfirm: number;
|
|
90
|
+
usedAccumulationAmt: number;
|
|
91
|
+
remoteDeliveryAmt: number;
|
|
92
|
+
productCouponAmt: number;
|
|
93
|
+
customsDuty: number;
|
|
94
|
+
totalImmediateDiscountAmt: number;
|
|
95
|
+
availableMaxAccumulationAmt: number;
|
|
96
|
+
accumulationAmt: number;
|
|
97
|
+
deliveryAmtOnDelivery: number;
|
|
98
|
+
salesTaxAmt: number;
|
|
99
|
+
isAvailableAccmulation: boolean;
|
|
100
|
+
totalStandardAmt: number;
|
|
101
|
+
}
|
|
102
|
+
export interface OrderSheetAddress {
|
|
103
|
+
recentAddresses: OrderSheetAddressAddressDetail[];
|
|
104
|
+
recentDeliveryMemo: string[];
|
|
105
|
+
memberAddress: OrderSheetAddressMemberAddress;
|
|
106
|
+
mainAddress: OrderSheetAddressAddressDetail;
|
|
107
|
+
}
|
|
108
|
+
export interface OrderSheetAddressMemberAddress {
|
|
109
|
+
address: string;
|
|
110
|
+
jibunAddress: string;
|
|
111
|
+
detailAddress: string;
|
|
112
|
+
zipCd: string;
|
|
113
|
+
jibunDetailAddress: string;
|
|
114
|
+
}
|
|
115
|
+
export interface OrderSheetAddressAddressDetail {
|
|
116
|
+
receiverAddress: string;
|
|
117
|
+
receiverJibunAddress: string;
|
|
118
|
+
addressNo: number;
|
|
119
|
+
receiverName: string;
|
|
277
120
|
customsIdNumber?: string;
|
|
278
|
-
countryCd
|
|
279
|
-
receiverZipCd
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
receiverContact1
|
|
283
|
-
receiverContact2
|
|
284
|
-
}
|
|
285
|
-
export interface OrderSheetsOrderSheetNoCalculateShippingAddresses {
|
|
286
|
-
payProductParams?: Array<OrderSheetsOrderSheetNoCalculatePayProductParams>;
|
|
287
|
-
requestShippingDate?: string;
|
|
288
|
-
addressNo?: number;
|
|
289
|
-
usesShippingInfoLaterInput?: boolean;
|
|
290
|
-
useDefaultAddress?: boolean;
|
|
291
|
-
shippingAddress?: OrderSheetsOrderSheetNoCalculateShippingAddress;
|
|
292
|
-
addressName?: string;
|
|
293
|
-
shippingInfoLaterInputContact?: string;
|
|
294
|
-
}
|
|
295
|
-
export interface OrderSheetsOrderSheetNoCalculate {
|
|
296
|
-
deliveryGroups?: Array<OrderSheetsOrderSheetNoCouponsApplyDeliveryGroups>;
|
|
297
|
-
appliedCoupons?: OrderSheetsOrderSheetNoCalculateAppliedCoupons;
|
|
298
|
-
availablePayTypes?: Array<object | boolean | string | number>;
|
|
299
|
-
paymentInfo?: RecurringPaymentsOrderSheetsOrderSheetNoPaymentInfo;
|
|
300
|
-
}
|
|
301
|
-
export interface OrderSheetsOrderSheetNoCalculateAppliedCoupons {
|
|
302
|
-
productCoupons?: Array<OrderSheetsOrderSheetNoCalculateAppliedCouponsProductCoupons>;
|
|
303
|
-
cartCouponIssueNo?: number;
|
|
304
|
-
promotionCode?: string;
|
|
305
|
-
deliveryCouponIssueNo?: number;
|
|
306
|
-
}
|
|
307
|
-
export interface OrderSheetsOrderSheetNoCalculateAppliedCouponsProductCoupons {
|
|
308
|
-
couponIssueNo?: number;
|
|
309
|
-
plusCouponIssueNo?: number;
|
|
310
|
-
productNo?: number;
|
|
311
|
-
}
|
|
312
|
-
export interface OrderSheetsOrderSheetNoCoupons {
|
|
313
|
-
orderSheetNo?: string;
|
|
314
|
-
cartAmt?: number;
|
|
315
|
-
deliveryAmt?: number;
|
|
316
|
-
deliveryCouponDiscountAmt?: number;
|
|
317
|
-
cartCouponDiscountAmt?: number;
|
|
318
|
-
cartCoupons?: Array<OrderSheetsOrderSheetNoCouponsCartCoupons>;
|
|
319
|
-
productCouponDiscountAmt?: number;
|
|
320
|
-
deliveryCoupons?: Array<object | boolean | string | number>;
|
|
321
|
-
products?: Array<OrderSheetsOrderSheetNoCouponsProducts>;
|
|
322
|
-
}
|
|
323
|
-
export interface OrderSheetsOrderSheetNoCouponsCartCoupons {
|
|
324
|
-
limitPayType?: string;
|
|
325
|
-
reason?: string;
|
|
326
|
-
discountRate?: number;
|
|
327
|
-
couponName?: string;
|
|
328
|
-
freeDeliveryYn?: string;
|
|
329
|
-
couponIssueNo?: number;
|
|
330
|
-
minSalePrice?: number;
|
|
331
|
-
freeDelivery?: boolean;
|
|
332
|
-
displayCouponName?: string;
|
|
333
|
-
maxDiscountAmt?: number;
|
|
334
|
-
couponNo?: number;
|
|
335
|
-
cartCouponUsable?: boolean;
|
|
336
|
-
useEndYmdt?: string;
|
|
337
|
-
usablePlatformTypes?: string;
|
|
338
|
-
couponTargetType?: string;
|
|
339
|
-
used?: boolean;
|
|
340
|
-
skipsAccumulation?: boolean;
|
|
341
|
-
couponDiscountAmt?: number;
|
|
342
|
-
couponType?: string;
|
|
343
|
-
productCouponUsable?: boolean;
|
|
344
|
-
fixedAmountDiscount?: boolean;
|
|
345
|
-
selected?: boolean;
|
|
346
|
-
}
|
|
347
|
-
export interface OrderSheetsOrderSheetNoCouponsProducts {
|
|
348
|
-
productCoupons?: Array<OrderSheetsOrderSheetNoCouponsCartCoupons>;
|
|
349
|
-
buyAmt?: number;
|
|
350
|
-
productPlusCoupons?: Array<object | boolean | string | number>;
|
|
351
|
-
brandName?: string;
|
|
352
|
-
mainOption?: string;
|
|
353
|
-
totalOrderCnt?: number;
|
|
354
|
-
optionCnt?: number;
|
|
355
|
-
invalidProductCoupons?: Array<object | boolean | string | number>;
|
|
356
|
-
productCouponDiscountAmt?: number;
|
|
357
|
-
optionInputs?: Array<RecurringPaymentsOrderSheetsOrderSheetNoOptionInputs>;
|
|
358
|
-
productName?: string;
|
|
359
|
-
productNo?: number;
|
|
360
|
-
}
|
|
361
|
-
export interface OrderSheetsOrderSheetNoCouponsApply {
|
|
362
|
-
deliveryGroups?: Array<OrderSheetsOrderSheetNoCouponsApplyDeliveryGroups>;
|
|
363
|
-
appliedCoupons?: OrderSheetsOrderSheetNoCouponsApplyAppliedCoupons;
|
|
364
|
-
availablePayTypes?: Array<object | boolean | string | number>;
|
|
365
|
-
paymentInfo?: RecurringPaymentsOrderSheetsOrderSheetNoPaymentInfo;
|
|
366
|
-
}
|
|
367
|
-
export interface OrderSheetsOrderSheetNoCouponsApplyAppliedCoupons {
|
|
368
|
-
productCoupons?: Array<OrderSheetsOrderSheetNoCouponsApplyAppliedCouponsProductCoupons>;
|
|
369
|
-
cartCouponIssueNo?: number;
|
|
370
|
-
promotionCode?: string;
|
|
371
|
-
deliveryCouponIssueNo?: number;
|
|
372
|
-
}
|
|
373
|
-
export interface OrderSheetsOrderSheetNoCouponsApplyAppliedCouponsProductCoupons {
|
|
374
|
-
couponIssueNo?: number;
|
|
375
|
-
plusCouponIssueNo?: number;
|
|
376
|
-
productNo?: number;
|
|
377
|
-
}
|
|
378
|
-
export interface OrderSheetsOrderSheetNoCouponsApplyDeliveryGroups {
|
|
379
|
-
partnerNo?: number;
|
|
380
|
-
deliveryPayType?: string;
|
|
381
|
-
deliveryCondition?: RecurringPaymentsOrderSheetsOrderSheetNoDeliveryCondition;
|
|
382
|
-
deliveryAmt?: number;
|
|
383
|
-
partnerName?: string;
|
|
384
|
-
orderProducts?: Array<OrderSheetsOrderSheetNoCouponsApplyOrderProducts>;
|
|
385
|
-
}
|
|
386
|
-
export interface OrderSheetsOrderSheetNoCouponsApplyOrderProductOptions {
|
|
387
|
-
recurringPaymentDelivery?: RecurringPaymentsOrderSheetsOrderSheetNoRecurringPaymentDelivery;
|
|
388
|
-
reservationDeliveryYmdt?: string;
|
|
389
|
-
optionTitle?: string;
|
|
390
|
-
accumulationAmtWhenBuyConfirm?: number;
|
|
391
|
-
validInfo?: RecurringPaymentsOrderSheetsOrderSheetNoValidInfo;
|
|
392
|
-
optionValue?: string;
|
|
393
|
-
orderCnt?: number;
|
|
394
|
-
optionInputs?: Array<RecurringPaymentsOrderSheetsOrderSheetNoOptionInputs>;
|
|
395
|
-
soldOut?: boolean;
|
|
396
|
-
optionType?: string;
|
|
397
|
-
price?: RecurringPaymentsOrderSheetsOrderSheetNoPrice;
|
|
398
|
-
imageUrl?: string;
|
|
399
|
-
reservation?: boolean;
|
|
400
|
-
stockCnt?: number;
|
|
401
|
-
optionNo?: number;
|
|
402
|
-
optionName?: string;
|
|
403
|
-
optionManagementCd?: string;
|
|
404
|
-
cartNo?: number;
|
|
405
|
-
productNo?: number;
|
|
406
|
-
}
|
|
407
|
-
export interface OrderSheetsOrderSheetNoCouponsApplyOrderProducts {
|
|
408
|
-
buyAmt?: number;
|
|
409
|
-
brandName?: string;
|
|
410
|
-
shippingAreaType?: string;
|
|
411
|
-
deliverable?: boolean;
|
|
412
|
-
optionUsed?: boolean;
|
|
413
|
-
liked?: boolean;
|
|
414
|
-
productName?: string;
|
|
415
|
-
additionalProducts?: Array<object | boolean | string | number>;
|
|
416
|
-
imageUrl?: string;
|
|
417
|
-
brandNameEn?: string;
|
|
418
|
-
orderProductOptions?: Array<OrderSheetsOrderSheetNoCouponsApplyOrderProductOptions>;
|
|
419
|
-
refundable?: boolean;
|
|
420
|
-
deliveryDate?: RecurringPaymentsOrderSheetsOrderSheetNoDeliveryDate;
|
|
421
|
-
brandNo?: number;
|
|
422
|
-
deliveryInternational?: boolean;
|
|
423
|
-
productNo?: number;
|
|
121
|
+
countryCd: CountryCode;
|
|
122
|
+
receiverZipCd: string;
|
|
123
|
+
addressName: string;
|
|
124
|
+
receiverDetailAddress: string;
|
|
125
|
+
receiverContact1: string;
|
|
126
|
+
receiverContact2: string;
|
|
424
127
|
}
|
|
425
|
-
export interface
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
128
|
+
export interface OrderSheetPromotionSummary {
|
|
129
|
+
usableDeliveryCouponCnt: number;
|
|
130
|
+
myAccumulationAmt: number;
|
|
131
|
+
myDeliveryCouponCnt: number;
|
|
132
|
+
usableCouponCnt: number;
|
|
133
|
+
myCouponCnt: number;
|
|
430
134
|
}
|
|
431
|
-
export interface
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
}
|
|
437
|
-
export interface OrderSheetsOrderSheetNoCouponsMaximum {
|
|
438
|
-
orderSheetNo?: string;
|
|
439
|
-
cartAmt?: number;
|
|
440
|
-
deliveryAmt?: number;
|
|
441
|
-
deliveryCouponDiscountAmt?: number;
|
|
442
|
-
cartCouponDiscountAmt?: number;
|
|
443
|
-
cartCoupons?: Array<OrderSheetsOrderSheetNoCouponsMaximumCartCoupons>;
|
|
444
|
-
productCouponDiscountAmt?: number;
|
|
445
|
-
deliveryCoupons?: Array<object | boolean | string | number>;
|
|
446
|
-
products?: Array<OrderSheetsOrderSheetNoCouponsMaximumProducts>;
|
|
135
|
+
export interface OrdererContact {
|
|
136
|
+
ordererEmail: string;
|
|
137
|
+
ordererContact1: string;
|
|
138
|
+
ordererContact2: string;
|
|
139
|
+
ordererName: string;
|
|
447
140
|
}
|
|
448
|
-
export interface
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
freeDeliveryYn?: string;
|
|
454
|
-
couponIssueNo?: number;
|
|
455
|
-
minSalePrice?: number;
|
|
456
|
-
freeDelivery?: boolean;
|
|
457
|
-
displayCouponName?: string;
|
|
458
|
-
maxDiscountAmt?: number;
|
|
459
|
-
couponNo?: number;
|
|
460
|
-
cartCouponUsable?: boolean;
|
|
461
|
-
useEndYmdt?: string;
|
|
462
|
-
usablePlatformTypes?: string;
|
|
463
|
-
couponTargetType?: string;
|
|
464
|
-
used?: boolean;
|
|
465
|
-
skipsAccumulation?: boolean;
|
|
466
|
-
couponDiscountAmt?: number;
|
|
467
|
-
couponType?: string;
|
|
468
|
-
productCouponUsable?: boolean;
|
|
469
|
-
fixedAmountDiscount?: boolean;
|
|
470
|
-
selected?: boolean;
|
|
141
|
+
export interface FreeGiftInfo {
|
|
142
|
+
freeGifts: FreeGift[];
|
|
143
|
+
giveStartYmdt: string;
|
|
144
|
+
giveEndYmdt: string;
|
|
145
|
+
giveConditionName: string;
|
|
471
146
|
}
|
|
472
|
-
export interface
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
brandName?: string;
|
|
477
|
-
mainOption?: string;
|
|
478
|
-
totalOrderCnt?: number;
|
|
479
|
-
optionCnt?: number;
|
|
480
|
-
invalidProductCoupons?: Array<object | boolean | string | number>;
|
|
481
|
-
productCouponDiscountAmt?: number;
|
|
482
|
-
optionInputs?: Array<RecurringPaymentsOrderSheetsOrderSheetNoOptionInputs>;
|
|
483
|
-
productName?: string;
|
|
484
|
-
productNo?: number;
|
|
147
|
+
export interface FreeGift {
|
|
148
|
+
optionValue: string;
|
|
149
|
+
optionName: string;
|
|
150
|
+
productName: string;
|
|
485
151
|
}
|
|
486
|
-
export interface
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
152
|
+
export interface TradeBankAccountInfo {
|
|
153
|
+
bankAccount: string;
|
|
154
|
+
bankCode: string;
|
|
155
|
+
bankDepositorName: string;
|
|
156
|
+
bankName: string;
|
|
157
|
+
}
|
|
158
|
+
export interface AppliedCoupon {
|
|
159
|
+
productCoupons?: ProductCouponWithProductNo[];
|
|
160
|
+
cartCouponIssueNo: number;
|
|
161
|
+
promotionCode: string;
|
|
162
|
+
}
|
|
163
|
+
export interface DeliveryGroup {
|
|
164
|
+
partnerNo: number;
|
|
165
|
+
deliveryPayType: DeliveryPayType;
|
|
166
|
+
deliveryCondition: DeliveryCondition;
|
|
167
|
+
deliveryAmt: number;
|
|
168
|
+
partnerName: string;
|
|
169
|
+
orderProducts: OrderProduct[];
|
|
170
|
+
}
|
|
171
|
+
export interface DeliveryCondition {
|
|
172
|
+
deliveryConditionType: DeliveryConditionType;
|
|
173
|
+
aboveDeliveryAmt: number;
|
|
174
|
+
deliveryAmt: number;
|
|
175
|
+
groupDeliveryAmtType: GroupDeliveryAmtType;
|
|
176
|
+
returnDeliveryAmt: number;
|
|
177
|
+
baseDeliveryAmt: number;
|
|
178
|
+
remoteDeliveryAmt: number;
|
|
179
|
+
chargesRemoteDeliveryAmt: boolean;
|
|
180
|
+
}
|
|
181
|
+
export interface OrderProduct {
|
|
182
|
+
buyAmt: number;
|
|
183
|
+
brandName: string;
|
|
184
|
+
shippingAreaType: ShippingAreaType;
|
|
185
|
+
deliverable: boolean;
|
|
186
|
+
optionUsed: boolean;
|
|
187
|
+
liked: boolean;
|
|
188
|
+
productName: string;
|
|
189
|
+
additionalProducts: OrderProduct[];
|
|
190
|
+
imageUrl: string;
|
|
191
|
+
brandNameEn: string;
|
|
192
|
+
orderProductOptions: OrderProductOption[];
|
|
193
|
+
refundable: boolean;
|
|
194
|
+
deliveryDate: DeliveryDate;
|
|
195
|
+
brandNo: number;
|
|
196
|
+
deliveryInternational: boolean;
|
|
197
|
+
productNo: number;
|
|
492
198
|
}
|
|
493
|
-
export interface
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
199
|
+
export interface DeliveryDate {
|
|
200
|
+
period: {
|
|
201
|
+
startYmdt: string;
|
|
202
|
+
endYmdy: string;
|
|
203
|
+
};
|
|
204
|
+
daysOfWeek: DaysOfWeek;
|
|
205
|
+
daysAfterPurchase: number;
|
|
206
|
+
}
|
|
207
|
+
export interface OrderProductOption {
|
|
208
|
+
recurringPaymentDelivery: RecurringPaymentDelivery;
|
|
209
|
+
reservationDeliveryYmdt: string;
|
|
210
|
+
optionTitle: string;
|
|
211
|
+
accumulationAmtWhenBuyConfirm: number;
|
|
212
|
+
validInfo: ValidInfo;
|
|
213
|
+
optionValue: string;
|
|
214
|
+
orderCnt: number;
|
|
215
|
+
optionInputs: OptionInput[];
|
|
216
|
+
soldOut: boolean;
|
|
217
|
+
optionType: OptionType;
|
|
218
|
+
price: OrderProductOptionPrice;
|
|
219
|
+
imageUrl: string;
|
|
220
|
+
setOptions: SetOption[];
|
|
221
|
+
reservation: boolean;
|
|
222
|
+
stockCnt: number;
|
|
223
|
+
optionNo: number;
|
|
224
|
+
optionName: string;
|
|
225
|
+
optionManagementCd: string;
|
|
226
|
+
cartNo: number;
|
|
227
|
+
productNo: number;
|
|
500
228
|
}
|
|
501
|
-
export interface
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
229
|
+
export interface SetOption {
|
|
230
|
+
usesOption: boolean;
|
|
231
|
+
mallOptionNo: number;
|
|
232
|
+
productManagementCd?: string;
|
|
233
|
+
optionValue: string;
|
|
234
|
+
count: number;
|
|
235
|
+
optionPrice: number;
|
|
236
|
+
sku?: string;
|
|
237
|
+
optionName: string;
|
|
238
|
+
optionManagementCd: string;
|
|
239
|
+
mallProductNo: number;
|
|
240
|
+
stockNo: number;
|
|
241
|
+
productName: string;
|
|
242
|
+
}
|
|
243
|
+
export interface OrderProductOptionPrice {
|
|
244
|
+
buyAmt: number;
|
|
245
|
+
additionalDiscountAmt: number;
|
|
246
|
+
immediateDiscountAmt: number;
|
|
247
|
+
salePrice: number;
|
|
248
|
+
standardAmt: number;
|
|
249
|
+
addPrice: number;
|
|
250
|
+
}
|
|
251
|
+
export interface ValidInfo {
|
|
252
|
+
valid: boolean;
|
|
253
|
+
validYn?: Yn;
|
|
254
|
+
errorCode: ErrorCode;
|
|
255
|
+
message: string;
|
|
256
|
+
orderCntChangeable: boolean;
|
|
257
|
+
}
|
|
258
|
+
export interface ErrorCode {
|
|
259
|
+
code: string;
|
|
260
|
+
simpleCode: string;
|
|
505
261
|
}
|
|
506
|
-
|
|
507
|
-
|
|
262
|
+
/**
|
|
263
|
+
* path: /order-sheets/{orderSheetNo}/calculate
|
|
264
|
+
*/
|
|
265
|
+
export interface PostOrderSheetsOrderSheetNoCalculateRequest {
|
|
266
|
+
pathVariable: {
|
|
267
|
+
orderSheetNo: string;
|
|
268
|
+
};
|
|
269
|
+
requestBody: {
|
|
270
|
+
addressRequest: AddressPayload;
|
|
271
|
+
couponRequest: CouponRequest;
|
|
272
|
+
accumulationUseAmt: number;
|
|
273
|
+
shippingAddresses: OrderSheetsOrderSheetNoCalculateShippingAddressesItem[];
|
|
274
|
+
};
|
|
508
275
|
}
|
|
509
|
-
export
|
|
510
|
-
|
|
276
|
+
export declare type OrderSheetsOrderSheetNoCalculateShippingAddressesItem = Omit<ShippingAddressesItem, 'saveAddressBook'>;
|
|
277
|
+
export interface PostOrderSheetsOrderSheetNoCalculateResponse {
|
|
278
|
+
deliveryGroups: DeliveryGroup[];
|
|
279
|
+
appliedCoupons: AppliedCoupon;
|
|
280
|
+
availablePayTypes: PayType[];
|
|
281
|
+
paymentInfo: OrderSheetsOrderSheetNoCalculatePaymentInfo;
|
|
282
|
+
}
|
|
283
|
+
export interface OrderSheetsOrderSheetNoCalculatePaymentInfo extends PaymentInfo {
|
|
284
|
+
remoteDeliveryAmtOnDelivery: number;
|
|
285
|
+
cartCouponAmt: number;
|
|
286
|
+
minAccumulationLimit: number;
|
|
287
|
+
minPriceLimit: number;
|
|
288
|
+
deliveryAmt: number;
|
|
289
|
+
totalAdditionalDiscountAmt: number;
|
|
290
|
+
}
|
|
291
|
+
export interface CouponRequest {
|
|
292
|
+
productCoupons: ProductCouponWithProductNo[];
|
|
293
|
+
cartCouponIssueNo: number;
|
|
294
|
+
promotionCode: string;
|
|
295
|
+
deliveryCouponIssueNo: number;
|
|
296
|
+
channelType: string;
|
|
511
297
|
}
|
|
512
298
|
/**
|
|
513
299
|
* path: /payments/reserve
|
|
@@ -524,7 +310,7 @@ export interface PostPaymentsReserveRequest {
|
|
|
524
310
|
bankAccountToDeposit?: BankAccountToDeposit;
|
|
525
311
|
payType: PayType;
|
|
526
312
|
clientReturnUrl?: string;
|
|
527
|
-
coupons?:
|
|
313
|
+
coupons?: PaymentReserveCoupons;
|
|
528
314
|
useDefaultAddress?: boolean;
|
|
529
315
|
member: boolean;
|
|
530
316
|
inAppYn?: Yn;
|
|
@@ -566,12 +352,12 @@ export interface CashReceipt {
|
|
|
566
352
|
cashReceiptKey: string;
|
|
567
353
|
cashReceiptIssuePurposeType: CashReceiptIssuePurposeType;
|
|
568
354
|
}
|
|
569
|
-
export interface
|
|
570
|
-
productCoupons?: Array<
|
|
355
|
+
export interface PaymentReserveCoupons {
|
|
356
|
+
productCoupons?: Array<ProductCouponWithProductNo>;
|
|
571
357
|
cartCouponIssueNo?: number;
|
|
572
358
|
promotionCode?: string;
|
|
573
359
|
}
|
|
574
|
-
export interface
|
|
360
|
+
export interface ProductCouponWithProductNo {
|
|
575
361
|
couponIssueNo: number;
|
|
576
362
|
productNo: number;
|
|
577
363
|
promotionCode?: string;
|
|
@@ -586,12 +372,13 @@ export interface PayProductParams {
|
|
|
586
372
|
mallOptionNo: number;
|
|
587
373
|
channelType?: string;
|
|
588
374
|
orderCnt: number;
|
|
589
|
-
optionInputs:
|
|
375
|
+
optionInputs: OptionInput[];
|
|
590
376
|
mallProductNo: number;
|
|
591
377
|
}
|
|
592
|
-
export interface
|
|
378
|
+
export interface OptionInput {
|
|
593
379
|
inputValue: string;
|
|
594
380
|
inputLabel: string;
|
|
381
|
+
required?: boolean;
|
|
595
382
|
}
|
|
596
383
|
export interface ShippingAddress {
|
|
597
384
|
receiverJibunAddress: string;
|
|
@@ -664,7 +451,7 @@ export interface AddressDetail {
|
|
|
664
451
|
mallNo: number;
|
|
665
452
|
receiverContact1: string;
|
|
666
453
|
receiverContact2?: string;
|
|
667
|
-
|
|
454
|
+
registerYmdt?: string;
|
|
668
455
|
}
|
|
669
456
|
/**
|
|
670
457
|
* path: /profile/shipping-addresses/recent
|
|
@@ -700,890 +487,3 @@ export interface PutProfileShippingAddressesAddressNoDefaultRequest {
|
|
|
700
487
|
};
|
|
701
488
|
}
|
|
702
489
|
export declare type PutProfileShippingAddressesAddressNoDefaultResponse = AddressDetail;
|
|
703
|
-
export interface ProfileOrders {
|
|
704
|
-
totalCount?: number;
|
|
705
|
-
items?: Array<ProfileOrdersItems>;
|
|
706
|
-
}
|
|
707
|
-
export interface ProfileOrdersDelivery {
|
|
708
|
-
deliveryCompanyTypeLabel?: string;
|
|
709
|
-
deliveryType?: string;
|
|
710
|
-
deliveryCompanyType?: string;
|
|
711
|
-
retrieveInvoiceUrl?: string;
|
|
712
|
-
invoiceNo?: string;
|
|
713
|
-
}
|
|
714
|
-
export interface ProfileOrdersFirstOrderAmt {
|
|
715
|
-
totalProductAmt?: number;
|
|
716
|
-
additionalDiscountAmt?: number;
|
|
717
|
-
immediateDiscountAmt?: number;
|
|
718
|
-
chargeAmt?: number;
|
|
719
|
-
deliveryAmt?: number;
|
|
720
|
-
deliveryCouponDiscountAmt?: number;
|
|
721
|
-
standardAmt?: number;
|
|
722
|
-
remoteDeliveryAmt?: number;
|
|
723
|
-
cartCouponDiscountAmt?: number;
|
|
724
|
-
productCouponDiscountAmt?: number;
|
|
725
|
-
subPayAmt?: number;
|
|
726
|
-
payAmt?: number;
|
|
727
|
-
}
|
|
728
|
-
export interface ProfileOrdersInputs {
|
|
729
|
-
inputValue?: string;
|
|
730
|
-
inputLabel?: string;
|
|
731
|
-
}
|
|
732
|
-
export interface ProfileOrdersItems {
|
|
733
|
-
orderOptions?: Array<ProfileOrdersOrderOptions>;
|
|
734
|
-
pgType?: string;
|
|
735
|
-
orderNo?: string;
|
|
736
|
-
pgMallKey?: string;
|
|
737
|
-
payType?: string;
|
|
738
|
-
lastOrderAmt?: ProfileOrdersLastOrderAmt;
|
|
739
|
-
pgOrderNo?: string;
|
|
740
|
-
member?: boolean;
|
|
741
|
-
nextActions?: Array<ProfileOrdersNextActions>;
|
|
742
|
-
escrow?: boolean;
|
|
743
|
-
orderYmdt?: string;
|
|
744
|
-
payTypeLabel?: string;
|
|
745
|
-
firstOrderAmt?: ProfileOrdersFirstOrderAmt;
|
|
746
|
-
}
|
|
747
|
-
export interface ProfileOrdersLastOrderAmt {
|
|
748
|
-
totalProductAmt?: number;
|
|
749
|
-
additionalDiscountAmt?: number;
|
|
750
|
-
immediateDiscountAmt?: number;
|
|
751
|
-
chargeAmt?: number;
|
|
752
|
-
deliveryAmt?: number;
|
|
753
|
-
deliveryCouponDiscountAmt?: number;
|
|
754
|
-
standardAmt?: number;
|
|
755
|
-
remoteDeliveryAmt?: number;
|
|
756
|
-
cartCouponDiscountAmt?: number;
|
|
757
|
-
productCouponDiscountAmt?: number;
|
|
758
|
-
subPayAmt?: number;
|
|
759
|
-
payAmt?: number;
|
|
760
|
-
}
|
|
761
|
-
export interface ProfileOrdersNextActions {
|
|
762
|
-
nextActionType?: string;
|
|
763
|
-
uri?: string;
|
|
764
|
-
}
|
|
765
|
-
export interface ProfileOrdersOrderOptions {
|
|
766
|
-
reservationDeliveryYmdt?: string;
|
|
767
|
-
claimNo?: number;
|
|
768
|
-
orderStatusTypeLabel?: string;
|
|
769
|
-
inputs?: Array<ProfileOrdersInputs>;
|
|
770
|
-
deliverable?: boolean;
|
|
771
|
-
optionUsed?: boolean;
|
|
772
|
-
claimStatusTypeLabel?: string;
|
|
773
|
-
productName?: string;
|
|
774
|
-
claimStatusType?: string;
|
|
775
|
-
additionalProductNo?: number;
|
|
776
|
-
optionType?: string;
|
|
777
|
-
deliveryInternationalYn?: boolean;
|
|
778
|
-
price?: ProfileOrdersPrice;
|
|
779
|
-
imageUrl?: string;
|
|
780
|
-
member?: boolean;
|
|
781
|
-
reservation?: boolean;
|
|
782
|
-
nextActions?: Array<ProfileOrdersNextActions>;
|
|
783
|
-
refundable?: boolean;
|
|
784
|
-
optionNo?: number;
|
|
785
|
-
brandNo?: number;
|
|
786
|
-
orderOptionNo?: number;
|
|
787
|
-
productNo?: number;
|
|
788
|
-
delivery?: ProfileOrdersDelivery;
|
|
789
|
-
optionTitle?: string;
|
|
790
|
-
brandName?: string;
|
|
791
|
-
orderNo?: string;
|
|
792
|
-
orderStatusType?: string;
|
|
793
|
-
optionValue?: string;
|
|
794
|
-
orderCnt?: number;
|
|
795
|
-
exchangeYn?: string;
|
|
796
|
-
accumulationAmt?: number;
|
|
797
|
-
orderStatusDate?: ProfileOrdersOrderStatusDate;
|
|
798
|
-
brandNameEn?: string;
|
|
799
|
-
productNameEn?: string;
|
|
800
|
-
optionManagementCd?: string;
|
|
801
|
-
optionName?: string;
|
|
802
|
-
}
|
|
803
|
-
export interface ProfileOrdersOrderStatusDate {
|
|
804
|
-
reviewableYmdt?: string;
|
|
805
|
-
buyConfirmYmdt?: string;
|
|
806
|
-
registerYmdt?: string;
|
|
807
|
-
}
|
|
808
|
-
export interface ProfileOrdersPrice {
|
|
809
|
-
buyPrice?: number;
|
|
810
|
-
buyAmt?: number;
|
|
811
|
-
immediateDiscountedAmt?: number;
|
|
812
|
-
additionalDiscountAmt?: number;
|
|
813
|
-
immediateDiscountAmt?: number;
|
|
814
|
-
salePrice?: number;
|
|
815
|
-
standardAmt?: number;
|
|
816
|
-
immediateDiscountedPrice?: number;
|
|
817
|
-
addPrice?: number;
|
|
818
|
-
standardPrice?: number;
|
|
819
|
-
accumulationRate?: number;
|
|
820
|
-
}
|
|
821
|
-
export interface ProfileOrdersOrderNo {
|
|
822
|
-
insurance?: ProfileOrdersOrderNoInsurance;
|
|
823
|
-
accumulationAmtWhenBuyConfirm?: number;
|
|
824
|
-
defaultOrderStatusType?: string;
|
|
825
|
-
pgMallKey?: string;
|
|
826
|
-
memo?: string;
|
|
827
|
-
firstOrderAmount?: ProfileOrdersFirstOrderAmt;
|
|
828
|
-
orderMemo?: string;
|
|
829
|
-
requireCustomsIdNumber?: boolean;
|
|
830
|
-
refundType?: string;
|
|
831
|
-
receiptInfos?: Array<ProfileOrdersOrderNoReceiptInfos>;
|
|
832
|
-
exchangePayInfos?: Array<ProfileOrdersOrderNoExchangePayInfos>;
|
|
833
|
-
payType?: string;
|
|
834
|
-
member?: boolean;
|
|
835
|
-
nextActions?: Array<ProfileOrdersOrderNoNextActions>;
|
|
836
|
-
escrow?: boolean;
|
|
837
|
-
availableBanks?: Array<ProfileOrdersOrderNoAvailableBanks>;
|
|
838
|
-
guestToken?: string;
|
|
839
|
-
refundTypeLabel?: string;
|
|
840
|
-
pgType?: string;
|
|
841
|
-
orderNo?: string;
|
|
842
|
-
lastOrderAmount?: ProfileOrdersLastOrderAmt;
|
|
843
|
-
refundInfos?: Array<ProfileOrdersOrderNoRefundInfos>;
|
|
844
|
-
deliveryMemo?: string;
|
|
845
|
-
refundPayType?: string;
|
|
846
|
-
claimReasonTypes?: Array<ProfileOrdersOrderNoClaimReasonTypes>;
|
|
847
|
-
orderer?: ProfileOrdersOrderNoOrderer;
|
|
848
|
-
pgOrderNo?: string;
|
|
849
|
-
orderOptionsGroupByPartner?: Array<ProfileOrdersOrderNoOrderOptionsGroupByPartner>;
|
|
850
|
-
shippingAddress?: ProfileOrdersOrderNoShippingAddress;
|
|
851
|
-
orderYmdt?: string;
|
|
852
|
-
billingAddress?: ProfileOrdersOrderNoBillingAddress;
|
|
853
|
-
payTypeLabel?: string;
|
|
854
|
-
payInfo?: ProfileOrdersOrderNoPayInfo;
|
|
855
|
-
}
|
|
856
|
-
export interface ProfileOrdersOrderNoAvailableBanks {
|
|
857
|
-
bank?: string;
|
|
858
|
-
label?: string;
|
|
859
|
-
}
|
|
860
|
-
export interface ProfileOrdersOrderNoBankAccount {
|
|
861
|
-
bankAccount?: string;
|
|
862
|
-
bankDepositorName?: string;
|
|
863
|
-
bank?: string;
|
|
864
|
-
bankName?: string;
|
|
865
|
-
}
|
|
866
|
-
export interface ProfileOrdersOrderNoBillingAddress {
|
|
867
|
-
receiverAddress?: string;
|
|
868
|
-
receiverJibunAddress?: string;
|
|
869
|
-
addressNo?: number;
|
|
870
|
-
receiverName?: string;
|
|
871
|
-
customsIdNumber?: string;
|
|
872
|
-
countryCd?: string;
|
|
873
|
-
addressName?: string;
|
|
874
|
-
receiverZipCd?: string;
|
|
875
|
-
receiverDetailAddress?: string;
|
|
876
|
-
receiverContact1?: string;
|
|
877
|
-
receiverContact2?: string;
|
|
878
|
-
}
|
|
879
|
-
export interface ProfileOrdersOrderNoClaimReasonTypes {
|
|
880
|
-
responsibleObjectType?: string;
|
|
881
|
-
claimReasonType?: string;
|
|
882
|
-
label?: string;
|
|
883
|
-
}
|
|
884
|
-
export interface ProfileOrdersOrderNoDeliveryAmtInfo {
|
|
885
|
-
afterDeliveryAmt?: number;
|
|
886
|
-
beforeDeliveryAmt?: number;
|
|
887
|
-
totalAmt?: number;
|
|
888
|
-
exchangeDeliveryAmt?: number;
|
|
889
|
-
buyerReturn?: boolean;
|
|
890
|
-
returnDeliveryAmt?: number;
|
|
891
|
-
payOnDelivery?: boolean;
|
|
892
|
-
exchangeAdjustAmt?: number;
|
|
893
|
-
sellerFault?: boolean;
|
|
894
|
-
refundDeliveryAmt?: number;
|
|
895
|
-
returnAdjustAmt?: number;
|
|
896
|
-
}
|
|
897
|
-
export interface ProfileOrdersOrderNoExchangeAddress {
|
|
898
|
-
note?: string;
|
|
899
|
-
addressStr?: string;
|
|
900
|
-
address?: string;
|
|
901
|
-
name?: string;
|
|
902
|
-
detailAddress?: string;
|
|
903
|
-
jibunAddress?: string;
|
|
904
|
-
zipCd?: string;
|
|
905
|
-
contact1?: string;
|
|
906
|
-
contact2?: string;
|
|
907
|
-
}
|
|
908
|
-
export interface ProfileOrdersOrderNoExchangeOrderOption {
|
|
909
|
-
userInputText?: string;
|
|
910
|
-
imageUrl?: string;
|
|
911
|
-
optionValue?: string;
|
|
912
|
-
orderCnt?: number;
|
|
913
|
-
optionName?: string;
|
|
914
|
-
productName?: string;
|
|
915
|
-
}
|
|
916
|
-
export interface ProfileOrdersOrderNoExchangePayInfos {
|
|
917
|
-
bankAccount?: ProfileOrdersOrderNoBankAccount;
|
|
918
|
-
exchangePayAmt?: number;
|
|
919
|
-
payType?: string;
|
|
920
|
-
remitter?: string;
|
|
921
|
-
}
|
|
922
|
-
export interface ProfileOrdersOrderNoInsurance {
|
|
923
|
-
no?: string;
|
|
924
|
-
type?: string;
|
|
925
|
-
url?: string;
|
|
926
|
-
}
|
|
927
|
-
export interface ProfileOrdersOrderNoNextActions {
|
|
928
|
-
nextActionType?: string;
|
|
929
|
-
uri?: string;
|
|
930
|
-
}
|
|
931
|
-
export interface ProfileOrdersOrderNoOrderOptionsGroupByDelivery {
|
|
932
|
-
receiverJibunAddress?: string;
|
|
933
|
-
deliveryPayType?: string;
|
|
934
|
-
orderOptions?: Array<ProfileOrdersOrderOptions>;
|
|
935
|
-
requestShippingDate?: string;
|
|
936
|
-
frontDisplayText?: string;
|
|
937
|
-
usesShippingInfoLaterInput?: boolean;
|
|
938
|
-
receiverName?: string;
|
|
939
|
-
deliveryCompanyTypeLabel?: string;
|
|
940
|
-
deliveryType?: string;
|
|
941
|
-
deliveryNo?: number;
|
|
942
|
-
deliveryCompanyType?: string;
|
|
943
|
-
remoteDeliveryAmt?: number;
|
|
944
|
-
receiverZipCd?: string;
|
|
945
|
-
receiverDetailAddress?: string;
|
|
946
|
-
retrieveInvoiceUrl?: string;
|
|
947
|
-
deliveryMemo?: string;
|
|
948
|
-
receiverAddress?: string;
|
|
949
|
-
deliveryAmt?: number;
|
|
950
|
-
returnDeliveryAmt?: number;
|
|
951
|
-
shippingMethodLabel?: string;
|
|
952
|
-
invoiceNo?: string;
|
|
953
|
-
receiverContact1?: string;
|
|
954
|
-
receiverContact2?: string;
|
|
955
|
-
shippingMethodType?: string;
|
|
956
|
-
}
|
|
957
|
-
export interface ProfileOrdersOrderNoOrderOptionsGroupByPartner {
|
|
958
|
-
partnerNo?: number;
|
|
959
|
-
orderOptionsGroupByDelivery?: Array<ProfileOrdersOrderNoOrderOptionsGroupByDelivery>;
|
|
960
|
-
partnerName?: string;
|
|
961
|
-
}
|
|
962
|
-
export interface ProfileOrdersOrderNoOrderer {
|
|
963
|
-
ordererEmail?: string;
|
|
964
|
-
ordererContact1?: string;
|
|
965
|
-
ordererContact2?: string;
|
|
966
|
-
ordererName?: string;
|
|
967
|
-
}
|
|
968
|
-
export interface ProfileOrdersOrderNoPayInfo {
|
|
969
|
-
mobileInfo?: ProfileOrdersOrderNoPayInfoMobileInfo;
|
|
970
|
-
bankInfo?: ProfileOrdersOrderNoPayInfoBankInfo;
|
|
971
|
-
cardInfo?: ProfileOrdersOrderNoPayInfoCardInfo;
|
|
972
|
-
tradeNo?: string;
|
|
973
|
-
pgCouponAmt?: number;
|
|
974
|
-
cardCouponAmt?: number;
|
|
975
|
-
naverPayInfo?: ProfileOrdersOrderNoPayInfoNaverPayInfo;
|
|
976
|
-
sellerCouponAmt?: number;
|
|
977
|
-
cashNo?: string;
|
|
978
|
-
cashAuthNo?: string;
|
|
979
|
-
payAmt?: number;
|
|
980
|
-
pointAmt?: number;
|
|
981
|
-
payType?: string;
|
|
982
|
-
escrowYn?: string;
|
|
983
|
-
taxType?: string;
|
|
984
|
-
}
|
|
985
|
-
export interface ProfileOrdersOrderNoPayInfoBankInfo {
|
|
986
|
-
depositorName?: string;
|
|
987
|
-
bankCode?: string;
|
|
988
|
-
bank?: string;
|
|
989
|
-
bankAmt?: number;
|
|
990
|
-
depositYmdt?: string;
|
|
991
|
-
bankName?: string;
|
|
992
|
-
remitterName?: string;
|
|
993
|
-
depositAmt?: number;
|
|
994
|
-
paymentExpirationYmdt?: string;
|
|
995
|
-
account?: string;
|
|
996
|
-
}
|
|
997
|
-
export interface ProfileOrdersOrderNoPayInfoCardInfo {
|
|
998
|
-
cardApprovalNumber?: string;
|
|
999
|
-
cardName?: string;
|
|
1000
|
-
installmentPeriod?: number;
|
|
1001
|
-
cardCode?: string;
|
|
1002
|
-
approveYmdt?: string;
|
|
1003
|
-
cardAmt?: number;
|
|
1004
|
-
cardNo?: string;
|
|
1005
|
-
cardCompany?: string;
|
|
1006
|
-
noInterest?: boolean;
|
|
1007
|
-
}
|
|
1008
|
-
export interface ProfileOrdersOrderNoPayInfoMobileInfo {
|
|
1009
|
-
mobileCompany?: string;
|
|
1010
|
-
mobileNo?: string;
|
|
1011
|
-
}
|
|
1012
|
-
export interface ProfileOrdersOrderNoPayInfoNaverPayInfo {
|
|
1013
|
-
naverMileagePaymentAmount?: number;
|
|
1014
|
-
orderType?: string;
|
|
1015
|
-
paymentDueDate?: string;
|
|
1016
|
-
generalPaymentAmount?: number;
|
|
1017
|
-
paymentMeans?: string;
|
|
1018
|
-
chargeAmountPaymentAmount?: number;
|
|
1019
|
-
paymentCoreType?: string;
|
|
1020
|
-
checkoutAccumulationPaymentAmount?: number;
|
|
1021
|
-
orderDiscountAmount?: number;
|
|
1022
|
-
paymentNumber?: string;
|
|
1023
|
-
payLocationType?: string;
|
|
1024
|
-
}
|
|
1025
|
-
export interface ProfileOrdersOrderNoProductAmtInfo {
|
|
1026
|
-
discountAmt?: number;
|
|
1027
|
-
totalAmt?: number;
|
|
1028
|
-
exchangeImmediateDiscountedPrice?: number;
|
|
1029
|
-
additionalDiscountAmt?: number;
|
|
1030
|
-
immediateDiscountAmt?: number;
|
|
1031
|
-
immediateDiscountedPrice?: number;
|
|
1032
|
-
exchangeAdjustAmt?: number;
|
|
1033
|
-
standardPrice?: number;
|
|
1034
|
-
productCouponDiscountAmt?: number;
|
|
1035
|
-
exchangeDiscountAmt?: number;
|
|
1036
|
-
}
|
|
1037
|
-
export interface ProfileOrdersOrderNoReceiptInfos {
|
|
1038
|
-
receiptType?: string;
|
|
1039
|
-
url?: string;
|
|
1040
|
-
}
|
|
1041
|
-
export interface ProfileOrdersOrderNoRefundBankAccount {
|
|
1042
|
-
bankAccount?: string;
|
|
1043
|
-
bankDepositorName?: string;
|
|
1044
|
-
bank?: string;
|
|
1045
|
-
bankName?: string;
|
|
1046
|
-
}
|
|
1047
|
-
export interface ProfileOrdersOrderNoRefundInfos {
|
|
1048
|
-
refundMainPayAmt?: number;
|
|
1049
|
-
refundTypeLabel?: string;
|
|
1050
|
-
claimNo?: number;
|
|
1051
|
-
deliveryAmtInfo?: ProfileOrdersOrderNoDeliveryAmtInfo;
|
|
1052
|
-
returnWayType?: string;
|
|
1053
|
-
claimImageUrls?: Array<object | boolean | string | number>;
|
|
1054
|
-
refundPayType?: string;
|
|
1055
|
-
returnAddress?: ProfileOrdersOrderNoReturnAddress;
|
|
1056
|
-
productAmtInfo?: ProfileOrdersOrderNoProductAmtInfo;
|
|
1057
|
-
subtractionAmtInfo?: ProfileOrdersOrderNoSubtractionAmtInfo;
|
|
1058
|
-
returnInvoiceNo?: string;
|
|
1059
|
-
refundType?: string;
|
|
1060
|
-
exchangeAddress?: ProfileOrdersOrderNoExchangeAddress;
|
|
1061
|
-
refundSubPayAmt?: number;
|
|
1062
|
-
returnDeliveryCompanyTypeLabel?: string;
|
|
1063
|
-
exchangeOrderOption?: ProfileOrdersOrderNoExchangeOrderOption;
|
|
1064
|
-
refundPayAmt?: number;
|
|
1065
|
-
refundBankAccount?: ProfileOrdersOrderNoRefundBankAccount;
|
|
1066
|
-
}
|
|
1067
|
-
export interface ProfileOrdersOrderNoReturnAddress {
|
|
1068
|
-
note?: string;
|
|
1069
|
-
addressStr?: string;
|
|
1070
|
-
address?: string;
|
|
1071
|
-
name?: string;
|
|
1072
|
-
detailAddress?: string;
|
|
1073
|
-
jibunAddress?: string;
|
|
1074
|
-
zipCd?: string;
|
|
1075
|
-
contact1?: string;
|
|
1076
|
-
contact2?: string;
|
|
1077
|
-
}
|
|
1078
|
-
export interface ProfileOrdersOrderNoShippingAddress {
|
|
1079
|
-
receiverAddress?: string;
|
|
1080
|
-
receiverJibunAddress?: string;
|
|
1081
|
-
addressNo?: number;
|
|
1082
|
-
receiverName?: string;
|
|
1083
|
-
customsIdNumber?: string;
|
|
1084
|
-
countryCd?: string;
|
|
1085
|
-
addressName?: string;
|
|
1086
|
-
receiverZipCd?: string;
|
|
1087
|
-
receiverDetailAddress?: string;
|
|
1088
|
-
receiverContact1?: string;
|
|
1089
|
-
receiverContact2?: string;
|
|
1090
|
-
}
|
|
1091
|
-
export interface ProfileOrdersOrderNoSubtractionAmtInfo {
|
|
1092
|
-
totalAmt?: number;
|
|
1093
|
-
deliveryCouponAmt?: number;
|
|
1094
|
-
refundAdjustReason?: string;
|
|
1095
|
-
refundAdjustAmt?: number;
|
|
1096
|
-
cartCouponAmt?: number;
|
|
1097
|
-
}
|
|
1098
|
-
export interface ProfileOrdersOrderNoCashReceipt {
|
|
1099
|
-
resultType?: string;
|
|
1100
|
-
}
|
|
1101
|
-
export interface ProfileOrdersOrderNoCashReceipt {
|
|
1102
|
-
cashReceiptKey?: string;
|
|
1103
|
-
cashReceiptIssuePurposeType?: string;
|
|
1104
|
-
}
|
|
1105
|
-
export interface ProfileOrdersOrderNoDeliveries {
|
|
1106
|
-
receiverAddress?: string;
|
|
1107
|
-
receiverJibunAddress?: string;
|
|
1108
|
-
receiverName?: string;
|
|
1109
|
-
customsIdNumber?: string;
|
|
1110
|
-
countryCd?: string;
|
|
1111
|
-
receiverZipCd?: string;
|
|
1112
|
-
receiverDetailAddress?: string;
|
|
1113
|
-
deliveryMemo?: string;
|
|
1114
|
-
receiverContact1?: string;
|
|
1115
|
-
receiverContact2?: string;
|
|
1116
|
-
}
|
|
1117
|
-
export interface ProfileOrdersSummaryAmount {
|
|
1118
|
-
lastPayAmt?: number;
|
|
1119
|
-
lastDeliveryAmt?: number;
|
|
1120
|
-
lastSubPayAmt?: number;
|
|
1121
|
-
lastRemoteDeliveryAmt?: number;
|
|
1122
|
-
lastAdditionalDiscountAmt?: number;
|
|
1123
|
-
orderCnt?: number;
|
|
1124
|
-
lastImmediateDiscountAmt?: number;
|
|
1125
|
-
lastDeliveryCouponDiscountAmt?: number;
|
|
1126
|
-
lastStandardAmt?: number;
|
|
1127
|
-
lastProductCouponDiscountAmt?: number;
|
|
1128
|
-
lastCartCouponDiscountAmt?: number;
|
|
1129
|
-
}
|
|
1130
|
-
export interface ProfileShippingAddressesAddressNo {
|
|
1131
|
-
lastName?: string;
|
|
1132
|
-
receiverJibunAddress?: string;
|
|
1133
|
-
defaultYn?: string;
|
|
1134
|
-
city?: string;
|
|
1135
|
-
receiverName?: string;
|
|
1136
|
-
addressType?: string;
|
|
1137
|
-
customsIdNumber?: string;
|
|
1138
|
-
lastUseYmdt?: string;
|
|
1139
|
-
countryCd?: string;
|
|
1140
|
-
externalMemberNo?: string;
|
|
1141
|
-
receiverZipCd?: string;
|
|
1142
|
-
receiverDetailAddress?: string;
|
|
1143
|
-
receiverAddress?: string;
|
|
1144
|
-
firstName?: string;
|
|
1145
|
-
memberNo?: number;
|
|
1146
|
-
addressNo?: number;
|
|
1147
|
-
addressName?: string;
|
|
1148
|
-
state?: string;
|
|
1149
|
-
mallNo?: number;
|
|
1150
|
-
receiverContact1?: string;
|
|
1151
|
-
receiverContact2?: string;
|
|
1152
|
-
registerYmdt?: string;
|
|
1153
|
-
}
|
|
1154
|
-
export interface ProfileShippingAddressesAddressNo {
|
|
1155
|
-
receiverAddress?: string;
|
|
1156
|
-
receiverJibunAddress?: string;
|
|
1157
|
-
defaultYn?: string;
|
|
1158
|
-
receiverName?: string;
|
|
1159
|
-
addressType?: string;
|
|
1160
|
-
customsIdNumber?: string;
|
|
1161
|
-
countryCd?: string;
|
|
1162
|
-
receiverZipCd?: string;
|
|
1163
|
-
addressName?: string;
|
|
1164
|
-
receiverDetailAddress?: string;
|
|
1165
|
-
receiverContact1?: string;
|
|
1166
|
-
receiverContact2?: string;
|
|
1167
|
-
}
|
|
1168
|
-
export interface RecurringPayments {
|
|
1169
|
-
ordererEmail?: string;
|
|
1170
|
-
orderSheetNo?: string;
|
|
1171
|
-
addressNo?: number;
|
|
1172
|
-
ordererContact?: string;
|
|
1173
|
-
ordererName?: string;
|
|
1174
|
-
}
|
|
1175
|
-
export interface RecurringPayments {
|
|
1176
|
-
buyAmt?: number;
|
|
1177
|
-
receiverJibunAddress?: string;
|
|
1178
|
-
discountAmt?: number;
|
|
1179
|
-
cardName?: string;
|
|
1180
|
-
receiverContact?: string;
|
|
1181
|
-
receiverName?: string;
|
|
1182
|
-
receiverDetailAddress?: string;
|
|
1183
|
-
products?: Array<RecurringPaymentsProducts>;
|
|
1184
|
-
receiverAddress?: string;
|
|
1185
|
-
deliveryAmt?: number;
|
|
1186
|
-
standardAmt?: number;
|
|
1187
|
-
ordererName?: string;
|
|
1188
|
-
cardEndDigit?: string;
|
|
1189
|
-
}
|
|
1190
|
-
export interface RecurringPaymentsProducts {
|
|
1191
|
-
recurringPaymentId?: string;
|
|
1192
|
-
optionValue?: string;
|
|
1193
|
-
optionName?: string;
|
|
1194
|
-
productName?: string;
|
|
1195
|
-
}
|
|
1196
|
-
export interface RecurringPaymentsCard {
|
|
1197
|
-
cardName?: string;
|
|
1198
|
-
cardEndDigit?: string;
|
|
1199
|
-
}
|
|
1200
|
-
export interface RecurringPaymentsCart {
|
|
1201
|
-
count?: number;
|
|
1202
|
-
}
|
|
1203
|
-
export interface RecurringPaymentsCart {
|
|
1204
|
-
deliveryGroups?: Array<RecurringPaymentsCartDeliveryGroups>;
|
|
1205
|
-
price?: CartSubsetPrice1;
|
|
1206
|
-
invalidProducts?: Array<RecurringPaymentsCartOrderProducts>;
|
|
1207
|
-
}
|
|
1208
|
-
export interface RecurringPaymentsCartDeliveryGroups {
|
|
1209
|
-
partnerNo?: number;
|
|
1210
|
-
deliveryPayType?: string;
|
|
1211
|
-
deliveryCondition?: CartSubsetDeliveryCondition;
|
|
1212
|
-
deliveryAmt?: number;
|
|
1213
|
-
partnerName?: string;
|
|
1214
|
-
orderProducts?: Array<RecurringPaymentsCartOrderProducts>;
|
|
1215
|
-
}
|
|
1216
|
-
export interface RecurringPaymentsCartOrderProductOptions {
|
|
1217
|
-
reservationDeliveryYmdt?: string;
|
|
1218
|
-
optionTitle?: string;
|
|
1219
|
-
accumulationAmtWhenBuyConfirm?: number;
|
|
1220
|
-
validInfo?: CartSubsetValidInfo;
|
|
1221
|
-
optionValue?: string;
|
|
1222
|
-
orderCnt?: number;
|
|
1223
|
-
optionInputs?: Array<CartSubsetOptionInputs>;
|
|
1224
|
-
soldOut?: boolean;
|
|
1225
|
-
optionType?: string;
|
|
1226
|
-
price?: RecurringPaymentsCartPrice;
|
|
1227
|
-
imageUrl?: string;
|
|
1228
|
-
recurringDeliveryCycles?: Array<object | boolean | string | number>;
|
|
1229
|
-
reservation?: boolean;
|
|
1230
|
-
stockCnt?: number;
|
|
1231
|
-
optionNo?: number;
|
|
1232
|
-
optionName?: string;
|
|
1233
|
-
optionManagementCd?: string;
|
|
1234
|
-
cartNo?: number;
|
|
1235
|
-
productNo?: number;
|
|
1236
|
-
}
|
|
1237
|
-
export interface RecurringPaymentsCartOrderProducts {
|
|
1238
|
-
buyAmt?: number;
|
|
1239
|
-
brandName?: string;
|
|
1240
|
-
deliverable?: boolean;
|
|
1241
|
-
optionUsed?: boolean;
|
|
1242
|
-
liked?: boolean;
|
|
1243
|
-
productName?: string;
|
|
1244
|
-
imageUrl?: string;
|
|
1245
|
-
brandNameEn?: string;
|
|
1246
|
-
orderProductOptions?: Array<RecurringPaymentsCartOrderProductOptions>;
|
|
1247
|
-
refundable?: boolean;
|
|
1248
|
-
deliveryDate?: CartSubsetDeliveryDate;
|
|
1249
|
-
deliveryInternational?: boolean;
|
|
1250
|
-
productNo?: number;
|
|
1251
|
-
}
|
|
1252
|
-
export interface RecurringPaymentsCartPrice {
|
|
1253
|
-
buyAmt?: number;
|
|
1254
|
-
additionalDiscountAmt?: number;
|
|
1255
|
-
immediateDiscountAmt?: number;
|
|
1256
|
-
salePrice?: number;
|
|
1257
|
-
standardAmt?: number;
|
|
1258
|
-
addPrice?: number;
|
|
1259
|
-
recurringDeliveryDiscountAmt?: number;
|
|
1260
|
-
}
|
|
1261
|
-
export interface RecurringPaymentsCloseRecurringPaymentNo {
|
|
1262
|
-
closeReasonType?: string;
|
|
1263
|
-
closeReason?: string;
|
|
1264
|
-
}
|
|
1265
|
-
export interface RecurringPaymentsDeliveryCycle {
|
|
1266
|
-
recurringPaymentId?: string;
|
|
1267
|
-
cycleDate?: number;
|
|
1268
|
-
cycle?: number;
|
|
1269
|
-
}
|
|
1270
|
-
export interface RecurringPaymentsNextRecurringDate {
|
|
1271
|
-
date?: number;
|
|
1272
|
-
cycleType?: string;
|
|
1273
|
-
recurringPaymentId?: string;
|
|
1274
|
-
nextRecurringDate?: string;
|
|
1275
|
-
cycle?: number;
|
|
1276
|
-
}
|
|
1277
|
-
export interface RecurringPaymentsOrderSheets {
|
|
1278
|
-
orderSheetNo?: string;
|
|
1279
|
-
}
|
|
1280
|
-
export interface RecurringPaymentsOrderSheetsOrderSheetNo {
|
|
1281
|
-
deliveryGroups?: Array<RecurringPaymentsOrderSheetsOrderSheetNoDeliveryGroups>;
|
|
1282
|
-
sellerPrivacyUsagePartners?: Array<RecurringPaymentsOrderSheetsOrderSheetNoSellerPrivacyUsagePartners>;
|
|
1283
|
-
appliedCoupons?: RecurringPaymentsOrderSheetsOrderSheetNoAppliedCoupons;
|
|
1284
|
-
availablePayTypes?: Array<RecurringPaymentsOrderSheetsOrderSheetNoAvailablePayTypes>;
|
|
1285
|
-
tradeBankAccountInfos?: Array<RecurringPaymentsOrderSheetsOrderSheetNoTradeBankAccountInfos>;
|
|
1286
|
-
invalidProducts?: Array<object | boolean | string | number>;
|
|
1287
|
-
ordererContact?: RecurringPaymentsOrderSheetsOrderSheetNoOrdererContact;
|
|
1288
|
-
agreementTypes?: Array<object | boolean | string | number>;
|
|
1289
|
-
requireCustomsIdNumber?: boolean;
|
|
1290
|
-
rentalInfo?: RecurringPaymentsOrderSheetsOrderSheetNoRentalInfo;
|
|
1291
|
-
lastPayType?: string;
|
|
1292
|
-
orderSheetPromotionSummary?: RecurringPaymentsOrderSheetsOrderSheetNoOrderSheetPromotionSummary;
|
|
1293
|
-
applyCashReceiptForAccount?: boolean;
|
|
1294
|
-
orderSheetAddress?: RecurringPaymentsOrderSheetsOrderSheetNoOrderSheetAddress;
|
|
1295
|
-
paymentInfo?: RecurringPaymentsOrderSheetsOrderSheetNoPaymentInfo;
|
|
1296
|
-
foreignPartners?: Array<RecurringPaymentsOrderSheetsOrderSheetNoForeignPartners>;
|
|
1297
|
-
}
|
|
1298
|
-
export interface RecurringPaymentsOrderSheetsOrderSheetNoAppliedCoupons {
|
|
1299
|
-
productCoupons?: Array<RecurringPaymentsOrderSheetsOrderSheetNoAppliedCouponsProductCoupons>;
|
|
1300
|
-
cartCouponIssueNo?: number;
|
|
1301
|
-
promotionCode?: string;
|
|
1302
|
-
}
|
|
1303
|
-
export interface RecurringPaymentsOrderSheetsOrderSheetNoAppliedCouponsProductCoupons {
|
|
1304
|
-
couponIssueNo?: number;
|
|
1305
|
-
productNo?: number;
|
|
1306
|
-
}
|
|
1307
|
-
export interface RecurringPaymentsOrderSheetsOrderSheetNoAvailablePayTypes {
|
|
1308
|
-
payType?: string;
|
|
1309
|
-
pgTypes?: Array<object | boolean | string | number>;
|
|
1310
|
-
}
|
|
1311
|
-
export interface RecurringPaymentsOrderSheetsOrderSheetNoDeliveryCondition {
|
|
1312
|
-
deliveryConditionType?: string;
|
|
1313
|
-
aboveDeliveryAmt?: number;
|
|
1314
|
-
deliveryAmt?: number;
|
|
1315
|
-
groupDeliveryAmtType?: string;
|
|
1316
|
-
returnDeliveryAmt?: number;
|
|
1317
|
-
baseDeliveryAmt?: number;
|
|
1318
|
-
remoteDeliveryAmt?: number;
|
|
1319
|
-
chargesRemoteDeliveryAmt?: boolean;
|
|
1320
|
-
}
|
|
1321
|
-
export interface RecurringPaymentsOrderSheetsOrderSheetNoDeliveryDate {
|
|
1322
|
-
period?: RecurringPaymentsOrderSheetsOrderSheetNoDeliveryDatePeriod;
|
|
1323
|
-
daysOfWeek?: Array<object | boolean | string | number>;
|
|
1324
|
-
daysAfterPurchase?: number;
|
|
1325
|
-
}
|
|
1326
|
-
export interface RecurringPaymentsOrderSheetsOrderSheetNoDeliveryDatePeriod {
|
|
1327
|
-
startYmdt?: string;
|
|
1328
|
-
endYmdt?: string;
|
|
1329
|
-
}
|
|
1330
|
-
export interface RecurringPaymentsOrderSheetsOrderSheetNoDeliveryGroups {
|
|
1331
|
-
partnerNo?: number;
|
|
1332
|
-
deliveryPayType?: string;
|
|
1333
|
-
deliveryCondition?: RecurringPaymentsOrderSheetsOrderSheetNoDeliveryCondition;
|
|
1334
|
-
deliveryAmt?: number;
|
|
1335
|
-
partnerName?: string;
|
|
1336
|
-
orderProducts?: Array<RecurringPaymentsOrderSheetsOrderSheetNoOrderProducts>;
|
|
1337
|
-
}
|
|
1338
|
-
export interface RecurringPaymentsOrderSheetsOrderSheetNoForeignPartners {
|
|
1339
|
-
partnerName?: string;
|
|
1340
|
-
privacyManagerPhoneNo?: string;
|
|
1341
|
-
privacyManagerName?: string;
|
|
1342
|
-
countryCd?: string;
|
|
1343
|
-
}
|
|
1344
|
-
export interface RecurringPaymentsOrderSheetsOrderSheetNoOptionInputs {
|
|
1345
|
-
inputValue?: string;
|
|
1346
|
-
inputLabel?: string;
|
|
1347
|
-
required?: boolean;
|
|
1348
|
-
}
|
|
1349
|
-
export interface RecurringPaymentsOrderSheetsOrderSheetNoOrderProductOptions {
|
|
1350
|
-
recurringPaymentDelivery?: RecurringPaymentsOrderSheetsOrderSheetNoRecurringPaymentDelivery;
|
|
1351
|
-
reservationDeliveryYmdt?: string;
|
|
1352
|
-
optionTitle?: string;
|
|
1353
|
-
accumulationAmtWhenBuyConfirm?: number;
|
|
1354
|
-
validInfo?: RecurringPaymentsOrderSheetsOrderSheetNoValidInfo;
|
|
1355
|
-
optionValue?: string;
|
|
1356
|
-
orderCnt?: number;
|
|
1357
|
-
optionInputs?: Array<RecurringPaymentsOrderSheetsOrderSheetNoOptionInputs>;
|
|
1358
|
-
soldOut?: boolean;
|
|
1359
|
-
optionType?: string;
|
|
1360
|
-
price?: RecurringPaymentsOrderSheetsOrderSheetNoPrice;
|
|
1361
|
-
imageUrl?: string;
|
|
1362
|
-
reservation?: boolean;
|
|
1363
|
-
stockCnt?: number;
|
|
1364
|
-
optionNo?: number;
|
|
1365
|
-
optionName?: string;
|
|
1366
|
-
optionManagementCd?: string;
|
|
1367
|
-
cartNo?: number;
|
|
1368
|
-
productNo?: number;
|
|
1369
|
-
}
|
|
1370
|
-
export interface RecurringPaymentsOrderSheetsOrderSheetNoOrderProducts {
|
|
1371
|
-
buyAmt?: number;
|
|
1372
|
-
brandName?: string;
|
|
1373
|
-
shippingAreaType?: string;
|
|
1374
|
-
deliverable?: boolean;
|
|
1375
|
-
optionUsed?: boolean;
|
|
1376
|
-
liked?: boolean;
|
|
1377
|
-
productName?: string;
|
|
1378
|
-
additionalProducts?: Array<object | boolean | string | number>;
|
|
1379
|
-
imageUrl?: string;
|
|
1380
|
-
brandNameEn?: string;
|
|
1381
|
-
orderProductOptions?: Array<RecurringPaymentsOrderSheetsOrderSheetNoOrderProductOptions>;
|
|
1382
|
-
refundable?: boolean;
|
|
1383
|
-
deliveryDate?: RecurringPaymentsOrderSheetsOrderSheetNoDeliveryDate;
|
|
1384
|
-
brandNo?: number;
|
|
1385
|
-
deliveryInternational?: boolean;
|
|
1386
|
-
productNo?: number;
|
|
1387
|
-
}
|
|
1388
|
-
export interface RecurringPaymentsOrderSheetsOrderSheetNoOrderSheetAddress {
|
|
1389
|
-
recentAddresses?: Array<RecurringPaymentsOrderSheetsOrderSheetNoOrderSheetAddressRecentAddresses>;
|
|
1390
|
-
recentDeliveryMemo?: Array<object | boolean | string | number>;
|
|
1391
|
-
memberAddress?: RecurringPaymentsOrderSheetsOrderSheetNoOrderSheetAddressMemberAddress;
|
|
1392
|
-
mainAddress?: RecurringPaymentsOrderSheetsOrderSheetNoOrderSheetAddressRecentAddresses;
|
|
1393
|
-
}
|
|
1394
|
-
export interface RecurringPaymentsOrderSheetsOrderSheetNoOrderSheetAddressMemberAddress {
|
|
1395
|
-
address?: string;
|
|
1396
|
-
jibunAddress?: string;
|
|
1397
|
-
detailAddress?: string;
|
|
1398
|
-
zipCd?: string;
|
|
1399
|
-
jibunDetailAddress?: string;
|
|
1400
|
-
}
|
|
1401
|
-
export interface RecurringPaymentsOrderSheetsOrderSheetNoOrderSheetAddressRecentAddresses {
|
|
1402
|
-
receiverAddress?: string;
|
|
1403
|
-
receiverJibunAddress?: string;
|
|
1404
|
-
addressNo?: number;
|
|
1405
|
-
receiverName?: string;
|
|
1406
|
-
customsIdNumber?: string;
|
|
1407
|
-
countryCd?: string;
|
|
1408
|
-
receiverZipCd?: string;
|
|
1409
|
-
addressName?: string;
|
|
1410
|
-
receiverDetailAddress?: string;
|
|
1411
|
-
receiverContact1?: string;
|
|
1412
|
-
receiverContact2?: string;
|
|
1413
|
-
}
|
|
1414
|
-
export interface RecurringPaymentsOrderSheetsOrderSheetNoOrderSheetPromotionSummary {
|
|
1415
|
-
usableDeliveryCouponCnt?: number;
|
|
1416
|
-
myAccumulationAmt?: number;
|
|
1417
|
-
myDeliveryCouponCnt?: number;
|
|
1418
|
-
usableCouponCnt?: number;
|
|
1419
|
-
myCouponCnt?: number;
|
|
1420
|
-
}
|
|
1421
|
-
export interface RecurringPaymentsOrderSheetsOrderSheetNoOrdererContact {
|
|
1422
|
-
ordererEmail?: string;
|
|
1423
|
-
ordererContact1?: string;
|
|
1424
|
-
ordererContact2?: string;
|
|
1425
|
-
ordererName?: string;
|
|
1426
|
-
}
|
|
1427
|
-
export interface RecurringPaymentsOrderSheetsOrderSheetNoPaymentInfo {
|
|
1428
|
-
paymentAmt?: number;
|
|
1429
|
-
cartAmt?: number;
|
|
1430
|
-
productAmt?: number;
|
|
1431
|
-
deliveryCouponAmt?: number;
|
|
1432
|
-
accumulationAmtWhenBuyConfirm?: number;
|
|
1433
|
-
usedAccumulationAmt?: number;
|
|
1434
|
-
remoteDeliveryAmt?: number;
|
|
1435
|
-
productCouponAmt?: number;
|
|
1436
|
-
customsDuty?: number;
|
|
1437
|
-
totalImmediateDiscountAmt?: number;
|
|
1438
|
-
remoteDeliveryAmtOnDelivery?: number;
|
|
1439
|
-
cartCouponAmt?: number;
|
|
1440
|
-
minAccumulationLimit?: number;
|
|
1441
|
-
minPriceLimit?: number;
|
|
1442
|
-
deliveryAmt?: number;
|
|
1443
|
-
totalAdditionalDiscountAmt?: number;
|
|
1444
|
-
availableMaxAccumulationAmt?: number;
|
|
1445
|
-
accumulationAmt?: number;
|
|
1446
|
-
deliveryAmtOnDelivery?: number;
|
|
1447
|
-
salesTaxAmt?: number;
|
|
1448
|
-
isAvailableAccumulation?: boolean;
|
|
1449
|
-
totalStandardAmt?: number;
|
|
1450
|
-
}
|
|
1451
|
-
export interface RecurringPaymentsOrderSheetsOrderSheetNoPrice {
|
|
1452
|
-
buyAmt?: number;
|
|
1453
|
-
additionalDiscountAmt?: number;
|
|
1454
|
-
immediateDiscountAmt?: number;
|
|
1455
|
-
salePrice?: number;
|
|
1456
|
-
standardAmt?: number;
|
|
1457
|
-
addPrice?: number;
|
|
1458
|
-
}
|
|
1459
|
-
export interface RecurringPaymentsOrderSheetsOrderSheetNoRecurringPaymentDelivery {
|
|
1460
|
-
date?: number;
|
|
1461
|
-
cycleType?: string;
|
|
1462
|
-
firstRecurringDate?: string;
|
|
1463
|
-
cycle?: number;
|
|
1464
|
-
}
|
|
1465
|
-
export interface RecurringPaymentsOrderSheetsOrderSheetNoRentalInfo {
|
|
1466
|
-
monthlyRentalAmount?: number;
|
|
1467
|
-
rentalPeriod?: number;
|
|
1468
|
-
}
|
|
1469
|
-
export interface RecurringPaymentsOrderSheetsOrderSheetNoSellerPrivacyUsagePartners {
|
|
1470
|
-
partnerName?: string;
|
|
1471
|
-
}
|
|
1472
|
-
export interface RecurringPaymentsOrderSheetsOrderSheetNoTradeBankAccountInfos {
|
|
1473
|
-
bankAccount?: string;
|
|
1474
|
-
bankCode?: string;
|
|
1475
|
-
bankDepositorName?: string;
|
|
1476
|
-
bankName?: string;
|
|
1477
|
-
}
|
|
1478
|
-
export interface RecurringPaymentsOrderSheetsOrderSheetNoValidInfo {
|
|
1479
|
-
valid?: boolean;
|
|
1480
|
-
validYn?: string;
|
|
1481
|
-
errorCode?: RecurringPaymentsOrderSheetsOrderSheetNoValidInfoErrorCode;
|
|
1482
|
-
message?: string;
|
|
1483
|
-
orderCntChangeable?: boolean;
|
|
1484
|
-
}
|
|
1485
|
-
export interface RecurringPaymentsOrderSheetsOrderSheetNoValidInfoErrorCode {
|
|
1486
|
-
code?: string;
|
|
1487
|
-
simpleCode?: string;
|
|
1488
|
-
}
|
|
1489
|
-
export interface ShippingsEncryptedShippingNoLaterInput {
|
|
1490
|
-
receiverAddress?: string;
|
|
1491
|
-
receiverJibunAddress?: string;
|
|
1492
|
-
partnerNo?: number;
|
|
1493
|
-
receiverName?: string;
|
|
1494
|
-
deliveryNo?: number;
|
|
1495
|
-
receiverZipCd?: string;
|
|
1496
|
-
laterInputCompleted?: boolean;
|
|
1497
|
-
receiverDetailAddress?: string;
|
|
1498
|
-
deliveryMemo?: string;
|
|
1499
|
-
mallNo?: number;
|
|
1500
|
-
receiverContact1?: string;
|
|
1501
|
-
}
|
|
1502
|
-
export interface ShippingsEncryptedShippingNoLaterInput {
|
|
1503
|
-
receiverAddress?: string;
|
|
1504
|
-
receiverJibunAddress?: string;
|
|
1505
|
-
receiverName?: string;
|
|
1506
|
-
receiverZipCd?: string;
|
|
1507
|
-
receiverDetailAddress?: string;
|
|
1508
|
-
deliveryMemo?: string;
|
|
1509
|
-
receiverContact1?: string;
|
|
1510
|
-
}
|
|
1511
|
-
export interface UnidentifiedDepositors {
|
|
1512
|
-
contents?: Array<UnidentifiedDepositorsContents>;
|
|
1513
|
-
totalCount?: number;
|
|
1514
|
-
}
|
|
1515
|
-
export interface UnidentifiedDepositorsContents {
|
|
1516
|
-
depositYmd?: string;
|
|
1517
|
-
no?: number;
|
|
1518
|
-
bank?: string;
|
|
1519
|
-
registerAdminNo?: number;
|
|
1520
|
-
name?: string;
|
|
1521
|
-
amt?: string;
|
|
1522
|
-
registerYmdt?: string;
|
|
1523
|
-
}
|
|
1524
|
-
export interface UnidentifiedDepositorsConfig {
|
|
1525
|
-
depositAmtDisplay?: boolean;
|
|
1526
|
-
pcDesignPopupTopBanner?: string;
|
|
1527
|
-
listDisplayPeriod?: number;
|
|
1528
|
-
depositBankDisplay?: boolean;
|
|
1529
|
-
mobileDesignMainBanner?: string;
|
|
1530
|
-
limitDisplayDepositAmt?: number;
|
|
1531
|
-
pcDesignMainBannerImageUrl?: string;
|
|
1532
|
-
bannerDisplayType?: string;
|
|
1533
|
-
mobileDesignMainBannerImageUrl?: string;
|
|
1534
|
-
bankdaUse?: boolean;
|
|
1535
|
-
mobileDesignPopupTopBanner?: string;
|
|
1536
|
-
pcDesignPopupTopBannerImageUrl?: string;
|
|
1537
|
-
mobileDesignPopupTopBannerImageUrl?: string;
|
|
1538
|
-
pcDesignMainBanner?: string;
|
|
1539
|
-
}
|
|
1540
|
-
export interface Wish {
|
|
1541
|
-
price?: WishPrice;
|
|
1542
|
-
orderProductOptions?: Array<WishOrderProductOptions>;
|
|
1543
|
-
}
|
|
1544
|
-
export interface WishOptionInputs {
|
|
1545
|
-
inputValue?: string;
|
|
1546
|
-
inputLabel?: string;
|
|
1547
|
-
required?: string;
|
|
1548
|
-
}
|
|
1549
|
-
export interface WishOrderProductOptions {
|
|
1550
|
-
reservationDeliveryYmdt?: string;
|
|
1551
|
-
optionTitle?: string;
|
|
1552
|
-
product?: WishProduct;
|
|
1553
|
-
accumulationAmtWhenBuyConfirm?: number;
|
|
1554
|
-
validInfo?: WishValidInfo;
|
|
1555
|
-
wishNo?: number;
|
|
1556
|
-
optionValue?: string;
|
|
1557
|
-
orderCnt?: number;
|
|
1558
|
-
optionInputs?: Array<WishOptionInputs>;
|
|
1559
|
-
soldOut?: boolean;
|
|
1560
|
-
optionType?: string;
|
|
1561
|
-
price?: CartSubsetPrice;
|
|
1562
|
-
imageUrl?: string;
|
|
1563
|
-
reservation?: boolean;
|
|
1564
|
-
stockCnt?: number;
|
|
1565
|
-
optionNo?: number;
|
|
1566
|
-
optionName?: string;
|
|
1567
|
-
optionManagementCd?: string;
|
|
1568
|
-
productNo?: number;
|
|
1569
|
-
}
|
|
1570
|
-
export interface WishPrice {
|
|
1571
|
-
buyAmt?: number;
|
|
1572
|
-
accumulationAmtWhenBuyConfirm?: number;
|
|
1573
|
-
}
|
|
1574
|
-
export interface WishProduct {
|
|
1575
|
-
brandName?: string;
|
|
1576
|
-
imageUrl?: string;
|
|
1577
|
-
productName?: string;
|
|
1578
|
-
productNo?: number;
|
|
1579
|
-
}
|
|
1580
|
-
export interface WishValidInfo {
|
|
1581
|
-
valid?: boolean;
|
|
1582
|
-
validYn?: string;
|
|
1583
|
-
errorCode?: string;
|
|
1584
|
-
message?: string;
|
|
1585
|
-
orderCntChangeable?: boolean;
|
|
1586
|
-
}
|
|
1587
|
-
export interface WishCount {
|
|
1588
|
-
count?: number;
|
|
1589
|
-
}
|