Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import wpcom from 'calypso/lib/wp';
import type { RequestCart, CartKey } from '@automattic/shopping-cart'; // eslint-disable-line
export const wpcomGetCart = ( cartKey: CartKey ) =>
wpcom.req.get( `/me/shopping-cart/${ cartKey }` );
export const wpcomSetCart = ( cartKey: CartKey, cartData: RequestCart ) =>
wpcom.req.post( `/me/shopping-cart/${ cartKey }`, cartData );