@shopby/shop-sdk 1.7.12 → 1.7.13
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/types/order.d.ts +3 -4
- package/package.json +1 -1
package/build/types/order.d.ts
CHANGED
|
@@ -273,10 +273,10 @@ export interface PostOrderSheetsOrderSheetNoCalculateRequest {
|
|
|
273
273
|
orderSheetNo: string;
|
|
274
274
|
};
|
|
275
275
|
requestBody: {
|
|
276
|
-
addressRequest
|
|
277
|
-
couponRequest
|
|
276
|
+
addressRequest?: AddressPayload;
|
|
277
|
+
couponRequest?: CouponRequest;
|
|
278
278
|
accumulationUseAmt: number;
|
|
279
|
-
shippingAddresses
|
|
279
|
+
shippingAddresses?: OrderSheetsOrderSheetNoCalculateShippingAddressesItem[];
|
|
280
280
|
};
|
|
281
281
|
}
|
|
282
282
|
export declare type OrderSheetsOrderSheetNoCalculateShippingAddressesItem = Omit<ShippingAddressesItem, 'saveAddressBook'>;
|
|
@@ -290,7 +290,6 @@ export interface CouponRequest {
|
|
|
290
290
|
productCoupons: ProductCouponWithProductNo[];
|
|
291
291
|
cartCouponIssueNo: number;
|
|
292
292
|
promotionCode: string;
|
|
293
|
-
deliveryCouponIssueNo: number;
|
|
294
293
|
channelType: string;
|
|
295
294
|
}
|
|
296
295
|
/**
|