I'm running my project locally and am seeing cart.updated events for items being added to the cart. I don't receive any events when removing an item from cart or from updating the quantity. Nothing in the docs specifies any additional requirements for these events.
Any help would be appreciated.
event: { data: { id } },
container,
}: SubscriberArgs<{
id?: string;
}>) {
console.log("****************** CART UPDATED ******************");
// removed for simplicity
}
export const config: SubscriberConfig = {
event: "cart.updated",
};
// update: altered code with latest attempt, single event, simple arg typing. Still don't receive cart item removals or amount changes