@esolve/ng-esolve-connect 0.64.0 → 0.64.2
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/esm2022/lib/cart/esolve-cart.service.mjs +3 -2
- package/esm2022/lib/cart/interfaces/esolve-checkout-body.interface.mjs +1 -1
- package/esm2022/lib/transactions/esolve-transactions.service.mjs +7 -1
- package/esm2022/lib/transactions/interfaces/esolve-transaction-options.interface.mjs +1 -1
- package/esm2022/lib/transactions/types/esolve-transaction-sort-field.type.mjs +1 -1
- package/fesm2022/esolve-ng-esolve-connect.mjs +8 -1
- package/fesm2022/esolve-ng-esolve-connect.mjs.map +1 -1
- package/lib/cart/esolve-cart.service.d.ts +1 -1
- package/lib/cart/interfaces/esolve-checkout-body.interface.d.ts +1 -0
- package/lib/transactions/interfaces/esolve-transaction-options.interface.d.ts +2 -0
- package/package.json +1 -1
|
@@ -62,7 +62,7 @@ export declare class EsolveCartService {
|
|
|
62
62
|
*
|
|
63
63
|
* @returns An `Observable` with the transaction ID
|
|
64
64
|
*/
|
|
65
|
-
checkout(type: EsolveTransactionType, addresses_id: number, shipping_id: number, payment_method_id?: number, location_id?: number, comments?: string, time_slot?: EsolveTimeSlotCheckout): Observable<EsolveCheckoutResult>;
|
|
65
|
+
checkout(type: EsolveTransactionType, addresses_id: number, shipping_id: number, payment_method_id?: number, location_id?: number, comments?: string, time_slot?: EsolveTimeSlotCheckout, apply_wallet?: boolean): Observable<EsolveCheckoutResult>;
|
|
66
66
|
getCartAlternatives(): Observable<EsolveCartAlternativesMap>;
|
|
67
67
|
/**
|
|
68
68
|
* Set an alternative stock item to current cart item
|