Remove filter woocommerce_add_cart_item while process auto add

Remove filter woocommerce_add_cart_item while process auto add

add_filter('advanced_woo_discount_rules_free_product_cart_item_data', function ($cart_item_data){
    remove_all_filters('woocommerce_add_cart_item');
	remove_all_actions('woocommerce_add_to_cart');
	
    return $cart_item_data;
});