nextemos 5.9.9 → 5.9.11
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.
|
@@ -110,12 +110,12 @@ export interface IDoBkmExpressTransactionRequest extends IGetCartRequest {
|
|
|
110
110
|
isApprovedToSalesAggreementForm: boolean;
|
|
111
111
|
isApprovedToPreInformationForm: boolean;
|
|
112
112
|
}
|
|
113
|
-
|
|
113
|
+
interface ICartFormRequestBase extends Omit<IGetCartRequest, "flags"> {
|
|
114
114
|
paymentMethodTypeId?: number;
|
|
115
115
|
installmentId?: number;
|
|
116
116
|
}
|
|
117
|
-
export
|
|
118
|
-
|
|
117
|
+
export type IGetPreInfoFormRequest = ICartFormRequestBase;
|
|
118
|
+
export type IGetSalesAggreementFormRequest = ICartFormRequestBase;
|
|
119
119
|
export interface IAddGiftBoxNoteRequest extends IGetCartRequest {
|
|
120
120
|
giftBoxNotes: {
|
|
121
121
|
documentId: string;
|
|
@@ -156,3 +156,4 @@ export interface IShoppingCartService extends IService {
|
|
|
156
156
|
AddGiftCardCoupon: (data: IAddGiftCardCouponRequest, options?: IRequestInit) => Promise<IApiResponse<IGetCartResponse>>;
|
|
157
157
|
RemoveGiftCardCoupon: (data: IRemoveGiftCardCouponRequest, options?: IRequestInit) => Promise<IApiResponse<IGetCartResponse>>;
|
|
158
158
|
}
|
|
159
|
+
export {};
|