File "extension-cart-update.ts"
Full path: /home/kosmetik/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/utils/extension-cart-update.ts
File
size: 809 B
MIME-type: text/plain
Charset: utf-8
Download Open Edit Advanced Editor Back
/**
* External dependencies
*/
import { dispatch } from '@wordpress/data';
import { CartResponse } from '@woocommerce/type-defs/cart-response';
import { ExtensionCartUpdateArgs } from '@woocommerce/types';
/**
* Internal dependencies
*/
import { STORE_KEY } from '../../../assets/js/data/cart/constants';
/**
* When executed, this will call the cart/extensions endpoint.
* The args contains a namespace, so if that extension has registered an update
* callback, it will be executed server-side and the new cart will be returned.
* The new cart is then received into the client-side store.
*/
export const extensionCartUpdate = (
args: ExtensionCartUpdateArgs
): Promise< CartResponse > => {
const { applyExtensionCartUpdate } = dispatch( STORE_KEY );
return applyExtensionCartUpdate( args );
};