@shopby/shop-sdk 1.78.72 → 1.78.73
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.
|
@@ -220,7 +220,9 @@ export interface ClaimOption {
|
|
|
220
220
|
productNameEn: string;
|
|
221
221
|
optionName: string;
|
|
222
222
|
optionManagementCd: string;
|
|
223
|
-
baseProductNo
|
|
223
|
+
baseProductNo: Nullable<number>;
|
|
224
|
+
baseProductName: Nullable<string>;
|
|
225
|
+
isExtraProduct: boolean;
|
|
224
226
|
}
|
|
225
227
|
export interface ClaimNextAction {
|
|
226
228
|
nextActionType: NextActionType;
|
|
@@ -67,8 +67,6 @@ export interface CartOrderProduct {
|
|
|
67
67
|
hsCode: string;
|
|
68
68
|
brandNameEn: string;
|
|
69
69
|
isRequiredOption: boolean;
|
|
70
|
-
baseProductNo?: number;
|
|
71
|
-
isExtraProduct: boolean;
|
|
72
70
|
extraProductOnly: boolean;
|
|
73
71
|
}
|
|
74
72
|
export interface CartPrice {
|
|
@@ -464,6 +462,8 @@ export interface OrderProductOption {
|
|
|
464
462
|
cartNo: number;
|
|
465
463
|
productNo: number;
|
|
466
464
|
isRequiredOption: boolean;
|
|
465
|
+
baseProductNo: Nullable<number>;
|
|
466
|
+
isExtraProduct: boolean;
|
|
467
467
|
}
|
|
468
468
|
export interface SetOption {
|
|
469
469
|
usesOption: boolean;
|
|
@@ -940,7 +940,7 @@ export interface OrderOptionsGroupByDeliveryItem {
|
|
|
940
940
|
receiverContact1: string;
|
|
941
941
|
receiverContact2: string;
|
|
942
942
|
receiverJibunAddress?: string;
|
|
943
|
-
orderOptions:
|
|
943
|
+
orderOptions: ProfileOrderOption[];
|
|
944
944
|
partnerName: string;
|
|
945
945
|
receiverName: string;
|
|
946
946
|
deliveryCompanyTypeLabel?: string;
|
|
@@ -955,7 +955,8 @@ export interface OrderOptionsGroupByDeliveryItem {
|
|
|
955
955
|
deliveryAmt: number;
|
|
956
956
|
returnDeliveryAmt: number;
|
|
957
957
|
shippingMethodType?: string;
|
|
958
|
-
baseProductNo
|
|
958
|
+
baseProductNo: Nullable<number>;
|
|
959
|
+
baseProductName: Nullable<string>;
|
|
959
960
|
}
|
|
960
961
|
export interface OrderOption {
|
|
961
962
|
reservationDeliveryYmdt?: DateYmdt;
|
|
@@ -998,7 +999,11 @@ export interface OrderOption {
|
|
|
998
999
|
productNameEn?: string;
|
|
999
1000
|
optionManagementCd?: string;
|
|
1000
1001
|
optionName: string;
|
|
1001
|
-
baseProductNo
|
|
1002
|
+
baseProductNo: Nullable<number>;
|
|
1003
|
+
baseProductName: Nullable<string>;
|
|
1004
|
+
}
|
|
1005
|
+
export interface ProfileOrderOption extends OrderOption {
|
|
1006
|
+
isExtraProduct: boolean;
|
|
1002
1007
|
}
|
|
1003
1008
|
export interface OrderStatusDate {
|
|
1004
1009
|
reviewableYmdt: DateYmdt;
|