import HenrySDK from '@henrylabs/sdk';
const client = new HenrySDK({
apiKey: process.env['HENRY_SDK_API_KEY'], // This is the default and can be omitted
});
const item = await client.cart.items.remove('productId', { 'x-user-id': 'x-user-id' });
console.log(item.message);