🗄 Nexora SQL Import Helper
30 partes · Banco:
jrydvtwmzwcsdfbnsegj
Como usar:
Selecione uma parte abaixo → clique
Copiar SQL
→ abra o
Supabase SQL Editor ↗
→ cole e clique
Run
→ volte aqui e passe para a próxima parte.
Execute sempre em ordem
: part_01 → part_02 → ... → part_30.
Partes (clique para navegar)
part_01
part_02
part_03
part_04
part_05
part_06
part_07
part_08
part_09
part_10
part_11
part_12
part_13
part_14
part_15
part_16
part_17
part_18
part_19
part_20
part_21
part_22
part_23
part_24
part_25
part_26
part_27
part_28
part_29
part_30
part_01.sql
434,998 bytes
📋 Copiar SQL
Próxima →
-- -- PostgreSQL database dump -- -- Dumped from database version 17.6 -- Dumped by pg_dump version 17.9 -- -- Name: public; Type: SCHEMA; Schema: -; Owner: - -- -- -- Name: SCHEMA "public"; Type: COMMENT; Schema: -; Owner: - -- -- -- Name: app_role; Type: TYPE; Schema: public; Owner: - -- CREATE TYPE "public"."app_role" AS ENUM ( 'admin', 'operador', 'visualizador', 'estoquista' ); -- -- Name: handle_new_user(); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION "public"."handle_new_user"() RETURNS "trigger" LANGUAGE "plpgsql" SECURITY DEFINER AS $$ BEGIN INSERT INTO public.profiles (user_id, full_name) VALUES (NEW.id, NEW.raw_user_meta_data->>'full_name'); RETURN NEW; END; $$; -- -- Name: has_role("uuid", "public"."app_role"); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION "public"."has_role"("_user_id" "uuid", "_role" "public"."app_role") RETURNS boolean LANGUAGE "sql" STABLE SECURITY DEFINER AS $$ SELECT EXISTS ( SELECT 1 FROM public.user_roles WHERE user_id = _user_id AND role = _role ) $$; -- -- Name: set_product_slug(); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION "public"."set_product_slug"() RETURNS "trigger" LANGUAGE "plpgsql" AS $$ DECLARE base_slug text; candidate text; counter int := 0; BEGIN -- Only generate if slug is null or name changed IF NEW.slug IS NOT NULL AND (TG_OP = 'INSERT' OR NEW.name = OLD.name) THEN RETURN NEW; END IF; base_slug := public.slugify(NEW.name); IF base_slug IS NULL OR length(base_slug) = 0 THEN base_slug := 'produto'; END IF; candidate := base_slug; WHILE EXISTS (SELECT 1 FROM public.products WHERE slug = candidate AND id != COALESCE(NEW.id, gen_random_uuid())) LOOP counter := counter + 1; candidate := base_slug || '-' || counter::text; END LOOP; NEW.slug := candidate; RETURN NEW; END; $$; -- -- Name: slugify("text"); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION "public"."slugify"("input" "text") RETURNS "text" LANGUAGE "plpgsql" IMMUTABLE AS $_$ DECLARE result text; BEGIN IF input IS NULL OR length(trim(input)) = 0 THEN RETURN NULL; END IF; -- lowercase, remove accents, replace non-alphanum with hyphen, trim hyphens result := lower(unaccent(input)); result := regexp_replace(result, '[^a-z0-9]+', '-', 'g'); result := regexp_replace(result, '^-+|-+$', '', 'g'); RETURN result; END; $_$; -- -- Name: sync_ml_stock_after_movement(); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION "public"."sync_ml_stock_after_movement"() RETURNS "trigger" LANGUAGE "plpgsql" SECURITY DEFINER AS $$ BEGIN PERFORM net.http_post( url := 'https://obcomsfvrtligsqoamlp.supabase.co/functions/v1/sync-ml-stock', headers := '{"Content-Type": "application/json", "Authorization": "Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6Im9iY29tc2Z2cnRsaWdzcW9hbWxwIiwicm9sZSI6ImFub24iLCJpYXQiOjE3NzU1MTY2NjcsImV4cCI6MjA5MTA5MjY2N30.ECE7dNcU5hy76VNk6oK39eQwVDzMV-jyqpgzNt-msvI"}'::jsonb, body := jsonb_build_object('product_id', NEW.product_id) ); RETURN NEW; EXCEPTION WHEN OTHERS THEN RAISE WARNING 'ML stock sync failed: %', SQLERRM; RETURN NEW; END; $$; -- -- Name: update_product_stock(); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION "public"."update_product_stock"() RETURNS "trigger" LANGUAGE "plpgsql" SECURITY DEFINER AS $$ BEGIN -- Recalculate stock as sum of per-deposit stocks (clamped to 0) UPDATE public.products SELECT SUM(GREATEST(0, deposit_total)) FROM ( SELECT deposit_id, SUM(CASE WHEN type = 'entrada' THEN quantity ELSE -quantity END) as deposit_total FROM public.stock_movements WHERE product_id = NEW.product_id AND deposit_id IS NOT NULL GROUP BY deposit_id ) sub ), 0) WHERE id = NEW.product_id; RETURN NEW; END; $$; -- -- Name: update_updated_at_column(); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION "public"."update_updated_at_column"() RETURNS "trigger" LANGUAGE "plpgsql" AS $$ BEGIN NEW.updated_at = now(); RETURN NEW; END; $$; -- -- Name: brands; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE "public"."brands" ( "id" "uuid" DEFAULT "gen_random_uuid"() NOT NULL, "user_id" "uuid" NOT NULL, "name" "text" NOT NULL, "logo_url" "text", "created_at" timestamp with time zone DEFAULT "now"() NOT NULL, "updated_at" timestamp with time zone DEFAULT "now"() NOT NULL ); -- -- Name: company_settings; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE "public"."company_settings" ( "id" "uuid" DEFAULT "gen_random_uuid"() NOT NULL, "user_id" "uuid" NOT NULL, "name" "text", "trade_name" "text", "cnpj" "text", "state_registration" "text", "phone" "text", "email" "text", "address" "text", "city" "text", "state" "text", "zip_code" "text", "logo_url" "text", "notes" "text", "created_at" timestamp with time zone DEFAULT "now"() NOT NULL, "updated_at" timestamp with time zone DEFAULT "now"() NOT NULL ); -- -- Name: customers; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE "public"."customers" ( "id" "uuid" DEFAULT "gen_random_uuid"() NOT NULL, "user_id" "uuid" NOT NULL, "name" "text" NOT NULL, "document" "text", "email" "text", "phone" "text", "address" "text", "city" "text", "state" "text", "zip_code" "text", "notes" "text", "created_at" timestamp with time zone DEFAULT "now"() NOT NULL, "updated_at" timestamp with time zone DEFAULT "now"() NOT NULL, "type" "text" DEFAULT 'PF'::"text" NOT NULL, "company_name" "text", "trade_name" "text", "state_registration" "text", "neighborhood" "text", "address_number" "text", "complement" "text" ); -- -- Name: deposits; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE "public"."deposits" ( "id" "uuid" DEFAULT "gen_random_uuid"() NOT NULL, "user_id" "uuid" NOT NULL, "name" "text" NOT NULL, "address" "text", "description" "text", "is_active" boolean DEFAULT true NOT NULL, "created_at" timestamp with time zone DEFAULT "now"() NOT NULL, "updated_at" timestamp with time zone DEFAULT "now"() NOT NULL ); -- -- Name: kit_components; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE "public"."kit_components" ( "id" "uuid" DEFAULT "gen_random_uuid"() NOT NULL, "kit_product_id" "uuid" NOT NULL, "component_product_id" "uuid" NOT NULL, "quantity" integer DEFAULT 1 NOT NULL, "user_id" "uuid" NOT NULL, "created_at" timestamp with time zone DEFAULT "now"() NOT NULL ); -- -- Name: ml_notifications; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE "public"."ml_notifications" ( "id" "uuid" DEFAULT "gen_random_uuid"() NOT NULL, "user_id" "uuid" NOT NULL, "type" "text" NOT NULL, "resource_id" "text", "is_read" boolean DEFAULT false NOT NULL, "details" "jsonb", "created_at" timestamp with time zone DEFAULT "now"() NOT NULL ); -- -- Name: ml_tokens; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE "public"."ml_tokens" ( "id" "uuid" DEFAULT "gen_random_uuid"() NOT NULL, "user_id" "uuid" NOT NULL, "access_token" "text" NOT NULL, "refresh_token" "text" NOT NULL, "expires_at" timestamp with time zone NOT NULL, "ml_user_id" "text", "ml_nickname" "text", "created_at" timestamp with time zone DEFAULT "now"() NOT NULL, "updated_at" timestamp with time zone DEFAULT "now"() NOT NULL ); -- -- Name: ml_webhook_logs; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE "public"."ml_webhook_logs" ( "id" "uuid" DEFAULT "gen_random_uuid"() NOT NULL, "user_id" "uuid", "topic" "text", "resource" "text", "ml_user_id" "text", "listing_id" "text", "action" "text" DEFAULT 'ignored'::"text" NOT NULL, "details" "jsonb", "created_at" timestamp with time zone DEFAULT "now"() NOT NULL ); -- -- Name: order_items; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE "public"."order_items" ( "id" "uuid" DEFAULT "gen_random_uuid"() NOT NULL, "order_id" "uuid" NOT NULL, "product_id" "uuid", "product_name" "text" NOT NULL, "product_sku" "text", "quantity" integer DEFAULT 1 NOT NULL, "unit_price" numeric DEFAULT 0 NOT NULL, "subtotal" numeric GENERATED ALWAYS AS ((("quantity")::numeric * "unit_price")) STORED, "created_at" timestamp with time zone DEFAULT "now"() NOT NULL ); -- -- Name: order_stock_logs; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE "public"."order_stock_logs" ( "id" "uuid" DEFAULT "gen_random_uuid"() NOT NULL, "user_id" "uuid" NOT NULL, "order_number" "text", "listing_id" "text", "product_id" "uuid", "product_name" "text", "sku" "text", "quantity" integer, "deposit_id" "uuid", "action" "text" DEFAULT 'success'::"text" NOT NULL, "error_message" "text", "source" "text" DEFAULT 'internal'::"text" NOT NULL, "details" "jsonb", "created_at" timestamp with time zone DEFAULT "now"() NOT NULL ); -- -- Name: orders; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE "public"."orders" ( "id" "uuid" DEFAULT "gen_random_uuid"() NOT NULL, "user_id" "uuid" NOT NULL, "customer_id" "uuid", "order_number" integer NOT NULL, "status" "text" DEFAULT 'rascunho'::"text" NOT NULL, "discount" numeric DEFAULT 0, "shipping" numeric DEFAULT 0, "notes" "text", "created_at" timestamp with time zone DEFAULT "now"() NOT NULL, "updated_at" timestamp with time zone DEFAULT "now"() NOT NULL, "payment_methods" "text"[] DEFAULT '{}'::"text"[], "public_token" "text" DEFAULT "encode"("extensions"."gen_random_bytes"(16), 'hex'::"text") NOT NULL ); -- -- Name: orders_order_number_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE "public"."orders_order_number_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: orders_order_number_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE "public"."orders_order_number_seq" OWNED BY "public"."orders"."order_number"; -- -- Name: payables; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE "public"."payables" ( "id" "uuid" DEFAULT "gen_random_uuid"() NOT NULL, "user_id" "uuid" NOT NULL, "purchase_order_id" "uuid", "supplier_id" "uuid", "installment_number" integer DEFAULT 1 NOT NULL, "amount" numeric DEFAULT 0 NOT NULL, "due_date" "date" NOT NULL, "status" "text" DEFAULT 'pendente'::"text" NOT NULL, "payment_method" "text" NOT NULL, "paid_at" timestamp with time zone, "paid_amount" numeric, "notes" "text", "receipt_url" "text", "created_at" timestamp with time zone DEFAULT "now"() NOT NULL, "updated_at" timestamp with time zone DEFAULT "now"() NOT NULL ); -- -- Name: pkce_verifiers; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE "public"."pkce_verifiers" ( "id" "uuid" DEFAULT "gen_random_uuid"() NOT NULL, "user_id" "uuid" NOT NULL, "code_verifier" "text" NOT NULL, "created_at" timestamp with time zone DEFAULT "now"() NOT NULL ); -- -- Name: product_listings; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE "public"."product_listings" ( "id" "uuid" DEFAULT "gen_random_uuid"() NOT NULL, "user_id" "uuid" NOT NULL, "product_id" "uuid", "marketplace" "text" DEFAULT 'mercado_livre'::"text" NOT NULL, "listing_id" "text", "listing_url" "text", "title" "text", "sku" "text", "price" numeric(12,2), "status" "text" DEFAULT 'active'::"text", "synced_at" timestamp with time zone, "created_at" timestamp with time zone DEFAULT "now"() NOT NULL, "updated_at" timestamp with time zone DEFAULT "now"() NOT NULL, "thumbnail_url" "text", "health" numeric, "listing_type_id" "text", "has_compatibility" boolean DEFAULT false, "ml_account_id" "uuid", "sub_status" "text"[] DEFAULT '{}'::"text"[] ); -- -- Name: COLUMN "product_listings"."health"; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON COLUMN "public"."product_listings"."health" IS 'Stores Mercado Livre performance score from 0 to 100.'; -- -- Name: products; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE "public"."products" ( "id" "uuid" DEFAULT "gen_random_uuid"() NOT NULL, "user_id" "uuid" NOT NULL, "name" "text" NOT NULL, "sku" "text", "oem_code" "text", "barcode" "text", "brand" "text", "category" "text", "subcategory" "text", "compatible_vehicles" "text"[] DEFAULT '{}'::"text"[], "position" "text", "cost_price" numeric(12,2) DEFAULT 0, "sale_price" numeric(12,2) DEFAULT 0, "ml_price" numeric(12,2) DEFAULT 0, "stock_quantity" integer DEFAULT 0, "description" "text", "ncm" "text", "weight_kg" numeric(8,3), "width_cm" numeric(8,2), "height_cm" numeric(8,2), "depth_cm" numeric(8,2), "is_kit" boolean DEFAULT false, "status" "text" DEFAULT 'ativo'::"text" NOT NULL, "created_at" timestamp with time zone DEFAULT "now"() NOT NULL, "updated_at" timestamp with time zone DEFAULT "now"() NOT NULL, "images" "text"[] DEFAULT '{}'::"text"[], "reference_codes" "text"[] DEFAULT '{}'::"text"[], "slug" "text", CONSTRAINT "products_position_check" CHECK (("position" = ANY (ARRAY['dianteiro'::"text", 'traseiro'::"text", 'ambos'::"text", NULL::"text"]))), CONSTRAINT "products_status_check" CHECK (("status" = ANY (ARRAY['ativo'::"text", 'inativo'::"text"]))) ); -- -- Name: profiles; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE "public"."profiles" ( "id" "uuid" DEFAULT "gen_random_uuid"() NOT NULL, "user_id" "uuid" NOT NULL, "full_name" "text", "phone" "text", "avatar_url" "text", "created_at" timestamp with time zone DEFAULT "now"() NOT NULL, "updated_at" timestamp with time zone DEFAULT "now"() NOT NULL ); -- -- Name: purchase_order_items; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE "public"."purchase_order_items" ( "id" "uuid" DEFAULT "gen_random_uuid"() NOT NULL, "purchase_order_id" "uuid" NOT NULL, "product_id" "uuid", "product_name" "text" NOT NULL, "product_sku" "text", "quantity" integer DEFAULT 1 NOT NULL, "unit_cost" numeric DEFAULT 0 NOT NULL, "subtotal" numeric GENERATED ALWAYS AS ((("quantity")::numeric * "unit_cost")) STORED, "created_at" timestamp with time zone DEFAULT "now"() NOT NULL ); -- -- Name: purchase_orders; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE "public"."purchase_orders" ( "id" "uuid" DEFAULT "gen_random_uuid"() NOT NULL, "user_id" "uuid" NOT NULL, "supplier_id" "uuid", "deposit_id" "uuid", "order_number" integer NOT NULL, "status" "text" DEFAULT 'rascunho'::"text" NOT NULL, "invoice_number" "text", "invoice_key" "text", "invoice_url" "text", "issue_date" "date" DEFAULT CURRENT_DATE NOT NULL, "expected_date" "date", "received_date" "date", "shipping" numeric DEFAULT 0, "discount" numeric DEFAULT 0, "other_costs" numeric DEFAULT 0, "total" numeric DEFAULT 0, "payment_method" "text", "notes" "text", "created_at" timestamp with time zone DEFAULT "now"() NOT NULL, "updated_at" timestamp with time zone DEFAULT "now"() NOT NULL ); -- -- Name: purchase_orders_order_number_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE "public"."purchase_orders_order_number_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: purchase_orders_order_number_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE "public"."purchase_orders_order_number_seq" OWNED BY "public"."purchase_orders"."order_number"; -- -- Name: receivables; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE "public"."receivables" ( "id" "uuid" DEFAULT "gen_random_uuid"() NOT NULL, "order_id" "uuid" NOT NULL, "user_id" "uuid" NOT NULL, "installment_number" integer DEFAULT 1 NOT NULL, "amount" numeric DEFAULT 0 NOT NULL, "due_date" "date" NOT NULL, "status" "text" DEFAULT 'pendente'::"text" NOT NULL, "payment_method" "text" NOT NULL, "paid_at" timestamp with time zone, "notes" "text", "created_at" timestamp with time zone DEFAULT "now"() NOT NULL, "updated_at" timestamp with time zone DEFAULT "now"() NOT NULL, "receipt_url" "text", "openpix_correlation_id" "text", "openpix_qrcode" "text", "openpix_qrcode_image" "text", "openpix_txid" "text", "openpix_generated_at" timestamp with time zone, "boleto_url" "text" ); -- -- Name: stock_movements; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE "public"."stock_movements" ( "id" "uuid" DEFAULT "gen_random_uuid"() NOT NULL, "user_id" "uuid" NOT NULL, "product_id" "uuid" NOT NULL, "deposit_id" "uuid", "type" "text" NOT NULL, "quantity" integer NOT NULL, "reason" "text", "notes" "text", "created_at" timestamp with time zone DEFAULT "now"() NOT NULL, CONSTRAINT "stock_movements_quantity_check" CHECK (("quantity" > 0)), CONSTRAINT "stock_movements_type_check" CHECK (("type" = ANY (ARRAY['entrada'::"text", 'saida'::"text"]))) ); -- -- Name: user_roles; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE "public"."user_roles" ( "id" "uuid" DEFAULT "gen_random_uuid"() NOT NULL, "user_id" "uuid" NOT NULL, "role" "public"."app_role" NOT NULL, "created_at" timestamp with time zone DEFAULT "now"() NOT NULL ); -- -- Name: orders order_number; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY "public"."orders" ALTER COLUMN "order_number" SET DEFAULT "nextval"('"public"."orders_order_number_seq"'::"regclass"); -- -- Name: purchase_orders order_number; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY "public"."purchase_orders" ALTER COLUMN "order_number" SET DEFAULT "nextval"('"public"."purchase_orders_order_number_seq"'::"regclass"); -- -- Data for Name: brands; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO "public"."brands" ("id", "user_id", "name", "logo_url", "created_at", "updated_at") VALUES ('0dbf7e19-7ce3-44f5-82e1-f97f5839a202', '15d40f49-cdfe-4799-875d-725710134716', 'BMTSR', 'https://obcomsfvrtligsqoamlp.supabase.co/storage/v1/object/public/product-images/brands/aabc2bb8-6a85-4031-999f-138bfe80d7ac.webp', '2026-04-07 11:38:58.44043+00', '2026-04-07 11:38:58.44043+00'), ('4b213f48-173b-43a4-9817-53715e18b11c', '15d40f49-cdfe-4799-875d-725710134716', 'Mercedes benz', 'https://obcomsfvrtligsqoamlp.supabase.co/storage/v1/object/public/product-images/brands/09875d96-1fed-4692-a3b8-edb4919f76a4.png', '2026-04-07 23:49:08.38671+00', '2026-04-07 23:49:08.38671+00'), ('bce6db07-f60e-42b5-a80e-8e2e280edaee', '15d40f49-cdfe-4799-875d-725710134716', 'SACHS', 'https://obcomsfvrtligsqoamlp.supabase.co/storage/v1/object/public/product-images/brands/7f5a10f5-6223-40d7-8517-d540e61b6812.png', '2026-04-08 01:40:37.359639+00', '2026-04-08 01:40:37.359639+00'), ('e8e1227e-a858-48a1-9358-6e5fa1230924', '15d40f49-cdfe-4799-875d-725710134716', 'LAND ROVER', NULL, '2026-04-20 10:48:22.531347+00', '2026-04-20 10:48:22.531347+00'), ('484c0a12-284d-4164-b12b-153b43e9f7e8', '15d40f49-cdfe-4799-875d-725710134716', 'Mercedes-Benz', NULL, '2026-04-20 12:10:17.487829+00', '2026-04-20 12:10:17.487829+00'), ('25716a84-fb6e-4011-bc97-dd3f6cdde681', '15d40f49-cdfe-4799-875d-725710134716', 'BMW', NULL, '2026-04-20 12:10:19.953347+00', '2026-04-20 12:10:19.953347+00'), ('c816383f-6e62-4ef1-abc0-b3f632a31c23', '15d40f49-cdfe-4799-875d-725710134716', 'Porsche', NULL, '2026-04-20 12:10:22.31126+00', '2026-04-20 12:10:22.31126+00'); -- -- Data for Name: company_settings; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO "public"."company_settings" ("id", "user_id", "name", "trade_name", "cnpj", "state_registration", "phone", "email", "address", "city", "state", "zip_code", "logo_url", "notes", "created_at", "updated_at") VALUES ('bc39ff42-8550-4c94-a4c1-64feb27ed9ab', '15d40f49-cdfe-4799-875d-725710134716', 'LAMORAY DISTRIBUIDORA LTDA', 'LAMORAY DISTRIBUIDORA', '44929809000178', '', '62999929992', 'info@lamoray.com.br', '', '', '', '', 'https://obcomsfvrtligsqoamlp.supabase.co/storage/v1/object/public/product-images/15d40f49-cdfe-4799-875d-725710134716/logo.png', '', '2026-04-16 15:32:17.544787+00', '2026-04-16 15:46:58.813528+00'); -- -- Data for Name: customers; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO "public"."customers" ("id", "user_id", "name", "document", "email", "phone", "address", "city", "state", "zip_code", "notes", "created_at", "updated_at", "type", "company_name", "trade_name", "state_registration", "neighborhood", "address_number", "complement") VALUES ('0123b842-2732-4fcf-a4a8-4e8436504a8b', '15d40f49-cdfe-4799-875d-725710134716', 'EMME COMERCIAL LTDA', '63.984.066/0001-83', '', '(11) 4367-5431', 'VIVALDI', 'SAO BERNARDO DO CAMPO', 'SP', '09617-000', '', '2026-04-16 14:34:08.364762+00', '2026-04-16 14:34:08.364762+00', 'PJ', 'EMME COMERCIAL LTDA', 'EMME COMERCIAL LTDA', '635209338115', 'RUDGE RAMOS', '1186', ''), ('83868081-28ef-4bec-b990-68671116a8cb', '15d40f49-cdfe-4799-875d-725710134716', 'INTERNETPECAS DISTRIBUIDORA DE AUTO PECAS LTDA', '35432329000106', NULL, NULL, 'AV. OLIVEIRA FREIRE', 'SÃO PAULO', 'SP', '08080570', NULL, '2026-04-20 10:35:52.846109+00', '2026-04-20 10:35:52.846109+00', 'PJ', 'INTERNETPECAS DISTRIBUIDORA DE AUTO PECAS LTDA', 'INTERNETPECAS DISTRIBUIDORA', NULL, 'PARQUE PAULISTANO', '403', NULL), ('2a62ef9e-bdf5-43f1-8414-7ebf4a836241', '15d40f49-cdfe-4799-875d-725710134716', 'HUSSEIN AYOUB AUTO PEÇAS LTDA', '38232728000111', '', '', NULL, NULL, NULL, NULL, NULL, '2026-04-20 11:03:40.715028+00', '2026-04-20 11:03:40.715028+00', 'PJ', NULL, 'HUSSEIN AYOUB AUTO PEÇAS LTDA', NULL, NULL, NULL, NULL), ('cc18818b-0f9b-4365-9fe3-8f0b97bea1d1', '15d40f49-cdfe-4799-875d-725710134716', 'NOIX PREMIUM COMERCIO DE PECAS AUTOMOTIVAS LTDA', '29807847000164', NULL, '(11) 2193-2147', 'AVENIDA STO AMARO', 'SÃO PAULO', 'SP', '04702001', NULL, '2026-04-20 12:22:55.130463+00', '2026-04-20 12:22:55.130463+00', 'PJ', 'NOIX PREMIUM COMERCIO DE PECAS AUTOMOTIVAS LTDA', 'NOIX PREMIUM PARTS', '119.104.460.114', 'SANTO AMARO', '5770', NULL); -- -- Data for Name: deposits; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO "public"."deposits" ("id", "user_id", "name", "address", "description", "is_active", "created_at", "updated_at") VALUES ('c80da602-6bbb-499f-83f4-2629c4c78611', '15d40f49-cdfe-4799-875d-725710134716', 'SÃO PAULO', 'AV MUN 340', 'PRINCIPAL', 't', '2026-04-07 01:25:30.166459+00', '2026-04-08 00:45:27.598949+00'), ('c7ab64b5-6e07-4918-871f-300aaac0dd79', '15d40f49-cdfe-4799-875d-725710134716', 'FOZ DO IGUAÇU', 'RUA PORTINARI 510', 'SEGUNDARIO ', 't', '2026-04-08 00:45:48.410152+00', '2026-04-08 00:45:48.410152+00'); -- -- Data for Name: kit_components; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO "public"."kit_components" ("id", "kit_product_id", "component_product_id", "quantity", "user_id", "created_at") VALUES ('cbdfbd4d-021b-497d-9c74-f598e7d87d25', '3f98f365-b7d3-4af0-b6ab-dc2714e1eab8', '3ec1b0e9-e2e8-4e7b-943f-2c608a49fe2f', '2', '15d40f49-cdfe-4799-875d-725710134716', '2026-04-16 22:08:11.51183+00'), ('da85102c-de72-423f-9988-ff05f14e4e5c', '61da599b-1d14-49bc-9c44-d2b35eb38ca0', '2fe84434-c8fc-4486-89d9-772728b3af10', '2', '15d40f49-cdfe-4799-875d-725710134716', '2026-04-16 22:12:20.537431+00'); -- -- Data for Name: ml_notifications; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO "public"."ml_notifications" ("id", "user_id", "type", "resource_id", "is_read", "details", "created_at") VALUES ('28564563-87d5-4a3e-bafe-076221e2eaaa', '15d40f49-cdfe-4799-875d-725710134716', 'messages', '019d983abdae7016b5176f5da3c67d51', 't', '{"resource": "019d983abdae7016b5176f5da3c67d51"}', '2026-04-16 22:05:47.950654+00'), ('b25619cc-3a39-4763-a6b7-9e60309d28cd', '15d40f49-cdfe-4799-875d-725710134716', 'messages', '019d98546ca076b9a59d0eb933dfee47', 't', '{"resource": "019d98546ca076b9a59d0eb933dfee47"}', '2026-04-16 22:06:08.492016+00'), ('f45bafe9-a52d-46bd-95f7-251af7d1f92a', '15d40f49-cdfe-4799-875d-725710134716', 'messages', '019d9c75e82870cea69eb79148d4f413', 't', '{"resource": "019d9c75e82870cea69eb79148d4f413"}', '2026-04-17 17:21:08.529997+00'), ('1ffbeaee-9fc5-4cff-a85b-41655a5adf38', '15d40f49-cdfe-4799-875d-725710134716', 'messages', '019d9c762e777a87b882f3af6a808bfa', 't', '{"resource": "019d9c762e777a87b882f3af6a808bfa"}', '2026-04-17 17:21:36.417303+00'), ('2e43a164-310e-41dc-8fc6-e2fa8ed7acf4', '15d40f49-cdfe-4799-875d-725710134716', 'messages', '019d9c75e82870cea69eb79148d4f413', 't', '{"resource": "019d9c75e82870cea69eb79148d4f413"}', '2026-04-17 17:25:31.715328+00'), ('46095af4-8c2d-4fba-984d-9599fcadd734', '15d40f49-cdfe-4799-875d-725710134716', 'messages', '019d9c762e777a87b882f3af6a808bfa', 't', '{"resource": "019d9c762e777a87b882f3af6a808bfa"}', '2026-04-17 17:25:57.82821+00'), ('e5d2393d-d252-40bf-a19c-c625d21c0210', '15d40f49-cdfe-4799-875d-725710134716', 'messages', '019d9c762e777a87b882f3af6a808bfa', 't', '{"resource": "019d9c762e777a87b882f3af6a808bfa"}', '2026-04-17 17:35:25.205968+00'), ('5f56bf39-5c52-4eaa-8621-cd8c630328d8', '15d40f49-cdfe-4799-875d-725710134716', 'messages', '019d9c75e82870cea69eb79148d4f413', 't', '{"resource": "019d9c75e82870cea69eb79148d4f413"}', '2026-04-17 17:35:26.179656+00'), ('869e9175-b933-4cfb-9131-522dd76c293d', '15d40f49-cdfe-4799-875d-725710134716', 'messages', '019d9ca205267eabbd5422d069df9ee2', 't', '{"resource": "019d9ca205267eabbd5422d069df9ee2"}', '2026-04-17 18:09:34.138438+00'), ('caa97950-93be-43c7-b8bb-a98117dd687f', '15d40f49-cdfe-4799-875d-725710134716', 'messages', '019d9ca27c0e793ca1c811f7d443917c', 't', '{"resource": "019d9ca27c0e793ca1c811f7d443917c"}', '2026-04-17 18:09:52.11594+00'), ('deb53e6e-671f-4cf9-bac4-73d1b1f62bb5', '15d40f49-cdfe-4799-875d-725710134716', 'messages', '019d9ca3bce579e3887ff57288368272', 't', '{"resource": "019d9ca3bce579e3887ff57288368272"}', '2026-04-17 18:11:28.402937+00'), ('1502a14f-1802-4953-850e-7ab08f24067c', '15d40f49-cdfe-4799-875d-725710134716', 'messages', '019d9ca205267eabbd5422d069df9ee2', 't', '{"resource": "019d9ca205267eabbd5422d069df9ee2"}', '2026-04-17 18:14:06.602802+00'), ('edf744f5-4312-42d6-bde2-978e504d397e', '15d40f49-cdfe-4799-875d-725710134716', 'messages', '019d9ca27c0e793ca1c811f7d443917c', 't', '{"resource": "019d9ca27c0e793ca1c811f7d443917c"}', '2026-04-17 18:14:18.817666+00'), ('52e20a66-903f-4630-8e83-1a1000183ec8', '15d40f49-cdfe-4799-875d-725710134716', 'questions', '13565912996', 't', '{"resource": "/questions/13565912996"}', '2026-04-17 19:50:33.513983+00'), ('4f3c1d2b-e612-42d4-a6e9-a4335851b4f2', '15d40f49-cdfe-4799-875d-725710134716', 'questions', '13565912996', 't', '{"resource": "/questions/13565912996"}', '2026-04-17 19:55:01.968124+00'), ('dc281901-c957-4982-a743-d4efb9565180', '15d40f49-cdfe-4799-875d-725710134716', 'questions', '13565912996', 't', '{"resource": "/questions/13565912996"}', '2026-04-17 19:59:58.310107+00'), ('ca1e192f-bbb7-42b0-8bc8-251f8fedc102', '15d40f49-cdfe-4799-875d-725710134716', 'questions', '13565912996', 't', '{"resource": "/questions/13565912996"}', '2026-04-17 20:04:36.005805+00'), ('1331551d-16a5-4d9c-abae-249aa07f9d0f', '15d40f49-cdfe-4799-875d-725710134716', 'questions', '13565912996', 't', '{"resource": "/questions/13565912996"}', '2026-04-17 20:04:37.565377+00'), ('6f41f614-cc45-49dd-9d42-d8f04411ea21', '15d40f49-cdfe-4799-875d-725710134716', 'messages', '019d9ca3bce579e3887ff57288368272', 't', '{"resource": "019d9ca3bce579e3887ff57288368272"}', '2026-04-17 18:15:52.838733+00'), ('57327a97-b3c5-45a4-8f16-6d355620e5d2', '15d40f49-cdfe-4799-875d-725710134716', 'messages', '019d9ca205267eabbd5422d069df9ee2', 't', '{"resource": "019d9ca205267eabbd5422d069df9ee2"}', '2026-04-17 18:23:23.723404+00'), ('edf8921d-7437-4fbd-a66b-24eb73899412', '15d40f49-cdfe-4799-875d-725710134716', 'questions', '13565912996', 't', '{"resource": "/questions/13565912996"}', '2026-04-17 20:14:03.114634+00'), ('e62b68e0-f866-44a5-aeee-aaaa48c78715', '15d40f49-cdfe-4799-875d-725710134716', 'questions', '13565912996', 't', '{"resource": "/questions/13565912996"}', '2026-04-17 20:14:04.460858+00'), ('d794557c-2d3c-4639-9241-9faf5fffba25', '15d40f49-cdfe-4799-875d-725710134716', 'questions', '13565187453', 't', '{"resource": "/questions/13565187453"}', '2026-04-17 20:23:53.90553+00'), ('ab942437-0514-4b55-bda8-cc5318e8cdce', '15d40f49-cdfe-4799-875d-725710134716', 'questions', '13565912996', 't', '{"resource": "/questions/13565912996"}', '2026-04-17 20:24:13.139551+00'), ('a1024664-47f7-4148-9242-6ecacaf54279', '15d40f49-cdfe-4799-875d-725710134716', 'questions', '13565187453', 't', '{"resource": "/questions/13565187453"}', '2026-04-17 20:28:00.94089+00'), ('0457d883-f399-4de7-9a00-3bfcffbe2f6d', '15d40f49-cdfe-4799-875d-725710134716', 'questions', '13565187453', 't', '{"resource": "/questions/13565187453"}', '2026-04-17 20:28:36.832749+00'), ('6abbb8a5-71c7-4683-bc3c-3d9c9657b542', '15d40f49-cdfe-4799-875d-725710134716', 'questions', '13565187453', 't', '{"resource": "/questions/13565187453"}', '2026-04-17 20:32:40.44093+00'), ('880b5c68-a587-4680-b005-4f96e36b1c62', '15d40f49-cdfe-4799-875d-725710134716', 'questions', '13565187453', 't', '{"resource": "/questions/13565187453"}', '2026-04-17 20:38:36.22586+00'), ('79957fb4-9096-4d98-b86b-d46066d5f6a3', '15d40f49-cdfe-4799-875d-725710134716', 'questions', '13565187453', 't', '{"resource": "/questions/13565187453"}', '2026-04-17 20:42:11.389839+00'), ('e742c95a-82ea-43d4-94f9-5ac33d9ea93f', '15d40f49-cdfe-4799-875d-725710134716', 'questions', '13565187453', 't', '{"resource": "/questions/13565187453"}', '2026-04-17 20:48:04.227955+00'), ('8fb7bc74-6e10-4ea4-a4c0-a1eb9a8fb01e', '15d40f49-cdfe-4799-875d-725710134716', 'questions', '13565187453', 't', '{"resource": "/questions/13565187453"}', '2026-04-17 20:52:32.054962+00'), ('9427cdae-d026-4e91-b403-b827b30c5994', '15d40f49-cdfe-4799-875d-725710134716', 'questions', '13565187453', 't', '{"resource": "/questions/13565187453"}', '2026-04-17 20:57:30.551721+00'), ('1d85bb82-e937-42f7-97c5-d5ed6ffe989e', '15d40f49-cdfe-4799-875d-725710134716', 'questions', '13565187453', 't', '{"resource": "/questions/13565187453"}', '2026-04-17 21:01:55.222031+00'); -- -- Data for Name: ml_tokens; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO "public"."ml_tokens" ("id", "user_id", "access_token", "refresh_token", "expires_at", "ml_user_id", "ml_nickname", "created_at", "updated_at") VALUES ('73d1009f-b025-45b2-a6e7-948b6891c92e', '15d40f49-cdfe-4799-875d-725710134716', 'APP_USR-4984880665306039-042006-60b93da146eb2e320d1c180532c9716f-2503596255', 'TG-69e5ff4139f9020001586677-2503596255', '2026-04-20 16:26:09.984+00', '2503596255', 'AJD_MEIDELISI', '2026-04-07 17:22:50.772418+00', '2026-04-20 10:26:10.46651+00'); -- -- Data for Name: ml_webhook_logs; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO "public"."ml_webhook_logs" ("id", "user_id", "topic", "resource", "ml_user_id", "listing_id", "action", "details", "created_at") VALUES ('92a9d191-f386-48c1-ae8d-ec193b88aa84', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6596315968', '2503596255', 'MLB6596315968', 'updated', '{"sku": "317556PAR", "price": 1990, "title": "Par Amortecedor Dianteiro Mercedes C180 C200 2012 2014 W204", "status": "active"}', '2026-04-16 16:52:52.374832+00'), ('f3257548-7907-469f-aca3-b777d2fb95b5', NULL, 'stock-locations', '/user-products/MLBU3898654974/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "c21a9909-723d-4cbe-8ae5-aa571e84df03", "sent": "2026-04-16T16:52:52.018Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T16:52:51.947Z", "resource": "/user-products/MLBU3898654974/stock", "application_id": 4984880665306039}}', '2026-04-16 16:52:52.694413+00'), ('b6327dff-a410-42f4-98cd-0546d0f25747', NULL, 'price_suggestion', '/marketplace/benchmarks/items/MLB4217072859/details', '1723354900', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "645c04bd-dc47-4143-abf4-34880f4cdb35", "sent": "2026-04-16T16:54:21.813Z", "topic": "price_suggestion", "actions": ["price_suggestion"], "user_id": 1723354900, "attempts": 1, "received": "2026-04-16T16:54:21.683Z", "resource": "/marketplace/benchmarks/items/MLB4217072859/details", "application_id": 4984880665306039}}', '2026-04-16 16:54:22.737582+00'), ('2472f250-5dc0-44e9-b93e-04d39a9a70ed', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6596315968', '2503596255', 'MLB6596315968', 'updated', '{"sku": "317556PAR", "price": 1990, "title": "Par Amortecedor Dianteiro Mercedes C180 C200 2012 2014 W204", "status": "active"}', '2026-04-16 16:57:01.015081+00'), ('7bd85c0f-17a2-4541-adf3-045e2b99d322', NULL, 'stock-locations', '/user-products/MLBU3898654974/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "c21a9909-723d-4cbe-8ae5-aa571e84df03", "sent": "2026-04-16T16:58:14.308Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T16:52:51.947Z", "resource": "/user-products/MLBU3898654974/stock", "application_id": 4984880665306039}}', '2026-04-16 16:58:14.930904+00'), ('37e5fa5c-27f1-4d39-9ebd-1533581aff54', NULL, 'price_suggestion', '/marketplace/benchmarks/items/MLB4217072859/details', '1723354900', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "645c04bd-dc47-4143-abf4-34880f4cdb35", "sent": "2026-04-16T16:59:57.265Z", "topic": "price_suggestion", "actions": ["price_suggestion"], "user_id": 1723354900, "attempts": 2, "received": "2026-04-16T16:54:21.683Z", "resource": "/marketplace/benchmarks/items/MLB4217072859/details", "application_id": 4984880665306039}}', '2026-04-16 16:59:58.192542+00'), ('fac93961-2d7e-4d02-91e7-8ae00d796f5c', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6596315968', '2503596255', 'MLB6596315968', 'updated', '{"sku": "317556PAR", "price": 1990, "title": "Par Amortecedor Dianteiro Mercedes C180 C200 2012 2014 W204", "status": "active"}', '2026-04-16 17:04:22.603809+00'), ('0451e251-552f-45e6-807f-3a132ef55473', NULL, 'price_suggestion', '/marketplace/benchmarks/items/MLB4217072859/details', '1723354900', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "645c04bd-dc47-4143-abf4-34880f4cdb35", "sent": "2026-04-16T17:07:10.269Z", "topic": "price_suggestion", "actions": ["price_suggestion"], "user_id": 1723354900, "attempts": 3, "received": "2026-04-16T16:54:21.683Z", "resource": "/marketplace/benchmarks/items/MLB4217072859/details", "application_id": 4984880665306039}}', '2026-04-16 17:07:11.069297+00'), ('dc847457-7f25-4d15-ae74-6742a475a921', NULL, 'shipments', '/shipments/46844718149', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "d621ace1-30a8-49ae-83b4-8843c731c26f", "sent": "2026-04-16T17:10:09.926Z", "topic": "shipments", "actions": [], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:10:09.848Z", "resource": "/shipments/46844718149", "application_id": 4984880665306039}}', '2026-04-16 17:10:10.903965+00'), ('e20fe1a2-aec2-48d2-99ab-f1765d02948b', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6596315968', '2503596255', 'MLB6596315968', 'updated', '{"sku": "317556PAR", "price": 1990, "title": "Par Amortecedor Dianteiro Mercedes C180 C200 2012 2014 W204", "status": "active"}', '2026-04-16 17:11:29.486427+00'), ('6c80f345-e56b-4d9f-b3c4-a94c98c7518e', NULL, 'shipments', '/shipments/46844718149', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "d621ace1-30a8-49ae-83b4-8843c731c26f", "sent": "2026-04-16T17:14:23.663Z", "topic": "shipments", "actions": [], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T17:10:09.848Z", "resource": "/shipments/46844718149", "application_id": 4984880665306039}}', '2026-04-16 17:14:24.51834+00'), ('cebff3cd-cb68-478d-b9a1-a67be99e4ac0', NULL, 'price_suggestion', '/marketplace/benchmarks/items/MLB4217072859/details', '1723354900', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "645c04bd-dc47-4143-abf4-34880f4cdb35", "sent": "2026-04-16T17:14:24.75Z", "topic": "price_suggestion", "actions": ["price_suggestion"], "user_id": 1723354900, "attempts": 4, "received": "2026-04-16T16:54:21.683Z", "resource": "/marketplace/benchmarks/items/MLB4217072859/details", "application_id": 4984880665306039}}', '2026-04-16 17:14:25.553004+00'), ('30e6b5d0-85e9-4460-a6e9-300d04164789', NULL, 'price_suggestion', '/marketplace/benchmarks/items/MLB5926187882/details', '1723354900', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "8e3f9d73-8d58-461f-b781-27c1c6347723", "sent": "2026-04-16T17:18:07.981Z", "topic": "price_suggestion", "actions": ["price_suggestion"], "user_id": 1723354900, "attempts": 1, "received": "2026-04-16T17:18:07.812Z", "resource": "/marketplace/benchmarks/items/MLB5926187882/details", "application_id": 4984880665306039}}', '2026-04-16 17:18:08.867025+00'), ('274f63e4-9233-4254-bfc8-9f085f4d6b5c', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6596315968', '2503596255', 'MLB6596315968', 'updated', '{"sku": "317556PAR", "price": 1990, "title": "Par Amortecedor Dianteiro Mercedes C180 C200 2012 2014 W204", "status": "active"}', '2026-04-16 17:19:41.90103+00'), ('60a1c8b1-1679-4dd7-8be7-b98d63232595', NULL, 'price_suggestion', '/marketplace/benchmarks/items/MLB4217072859/details', '1723354900', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "645c04bd-dc47-4143-abf4-34880f4cdb35", "sent": "2026-04-16T17:21:45.114Z", "topic": "price_suggestion", "actions": ["price_suggestion"], "user_id": 1723354900, "attempts": 5, "received": "2026-04-16T16:54:21.683Z", "resource": "/marketplace/benchmarks/items/MLB4217072859/details", "application_id": 4984880665306039}}', '2026-04-16 17:21:45.985924+00'), ('9c5ce7d7-1ff3-49b3-a400-59acb3bb80b1', NULL, 'price_suggestion', '/marketplace/benchmarks/items/MLB5926187882/details', '1723354900', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "8e3f9d73-8d58-461f-b781-27c1c6347723", "sent": "2026-04-16T17:23:46.45Z", "topic": "price_suggestion", "actions": ["price_suggestion"], "user_id": 1723354900, "attempts": 2, "received": "2026-04-16T17:18:07.812Z", "resource": "/marketplace/benchmarks/items/MLB5926187882/details", "application_id": 4984880665306039}}', '2026-04-16 17:23:47.335882+00'), ('8fd14d93-d04d-43be-a598-3eb1b1fd2ae8', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4592119897', '2503596255', 'MLB4592119897', 'updated', '{"sku": "B2702000800GC", "price": 1150, "title": " Bomba Água Mercedes Benz A160 1.6 2015 2016 A 270 200 04 0", "status": "under_review"}', '2026-04-16 17:25:43.29065+00'), ('85a5ad27-a9d5-4fee-8169-0ab2407cf929', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4592119897', '2503596255', 'MLB4592119897', 'updated', '{"sku": "B2702000800GC", "price": 1150, "title": " Bomba Água Mercedes Benz A160 1.6 2015 2016 A 270 200 04 0", "status": "under_review"}', '2026-04-16 17:30:19.831938+00'), ('9f4d8b38-c0c3-409f-82af-a94523fe7008', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607758142', '2503596255', 'MLB6607758142', 'updated', '{"sku": "B1643200130-KIT", "price": 2199, "title": "Par Amortecedor Dianteiro Mercedes Ml320 Ml350 Ml500 06/11", "status": "active"}', '2026-04-16 17:53:04.481031+00'), ('fb7907ea-0c90-4e24-bdeb-4e759ab95ed2', NULL, 'price_suggestion', '/marketplace/benchmarks/items/MLB5926187882/details', '1723354900', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "8e3f9d73-8d58-461f-b781-27c1c6347723", "sent": "2026-04-16T17:31:03.526Z", "topic": "price_suggestion", "actions": ["price_suggestion"], "user_id": 1723354900, "attempts": 3, "received": "2026-04-16T17:18:07.812Z", "resource": "/marketplace/benchmarks/items/MLB5926187882/details", "application_id": 4984880665306039}}', '2026-04-16 17:31:04.616532+00'), ('2b181167-640c-439b-895a-0a8ba73f8417', NULL, 'price_suggestion', '/marketplace/benchmarks/items/MLB5925948756/details', '1723354900', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "1d529af8-efb0-4a8c-9909-97aea80e5023", "sent": "2026-04-16T17:31:20.084Z", "topic": "price_suggestion", "actions": ["price_suggestion"], "user_id": 1723354900, "attempts": 1, "received": "2026-04-16T17:31:19.962Z", "resource": "/marketplace/benchmarks/items/MLB5925948756/details", "application_id": 4984880665306039}}', '2026-04-16 17:31:20.735901+00'), ('62f9f35d-7181-441e-98bd-cc6a8bc3d582', NULL, 'price_suggestion', '/marketplace/benchmarks/items/MLB5925948756/details', '1723354900', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "1d529af8-efb0-4a8c-9909-97aea80e5023", "sent": "2026-04-16T17:36:28.602Z", "topic": "price_suggestion", "actions": ["price_suggestion"], "user_id": 1723354900, "attempts": 2, "received": "2026-04-16T17:31:19.962Z", "resource": "/marketplace/benchmarks/items/MLB5925948756/details", "application_id": 4984880665306039}}', '2026-04-16 17:36:29.694281+00'), ('8070ce2e-c714-4265-a563-3895a37018d5', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4592119897', '2503596255', 'MLB4592119897', 'updated', '{"sku": "B2702000800GC", "price": 1150, "title": " Bomba Água Mercedes Benz A160 1.6 2015 2016 A 270 200 04 0", "status": "under_review"}', '2026-04-16 17:37:49.045352+00'), ('fc2a5046-5565-48c8-9b23-369d270ed3b9', NULL, 'price_suggestion', '/marketplace/benchmarks/items/MLB5926187882/details', '1723354900', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "8e3f9d73-8d58-461f-b781-27c1c6347723", "sent": "2026-04-16T17:38:26.394Z", "topic": "price_suggestion", "actions": ["price_suggestion"], "user_id": 1723354900, "attempts": 4, "received": "2026-04-16T17:18:07.812Z", "resource": "/marketplace/benchmarks/items/MLB5926187882/details", "application_id": 4984880665306039}}', '2026-04-16 17:38:27.19319+00'), ('1f477df7-b33a-411b-948b-9807f791bd1d', NULL, 'price_suggestion', '/marketplace/benchmarks/items/MLB6413191762/details', '1723354900', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "b30bfb4d-ab31-4362-af5d-5f0929acc63f", "sent": "2026-04-16T17:41:56.329Z", "topic": "price_suggestion", "actions": ["price_suggestion"], "user_id": 1723354900, "attempts": 1, "received": "2026-04-16T17:41:56.219Z", "resource": "/marketplace/benchmarks/items/MLB6413191762/details", "application_id": 4984880665306039}}', '2026-04-16 17:41:57.427271+00'), ('cb9c3ea7-3175-4664-a8ea-2c57fd198821', NULL, 'price_suggestion', '/marketplace/benchmarks/items/MLB5925948756/details', '1723354900', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "1d529af8-efb0-4a8c-9909-97aea80e5023", "sent": "2026-04-16T17:44:00.245Z", "topic": "price_suggestion", "actions": ["price_suggestion"], "user_id": 1723354900, "attempts": 3, "received": "2026-04-16T17:31:19.962Z", "resource": "/marketplace/benchmarks/items/MLB5925948756/details", "application_id": 4984880665306039}}', '2026-04-16 17:44:01.201028+00'), ('95696d8d-774f-4155-978c-fac795412540', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4592119897', '2503596255', 'MLB4592119897', 'updated', '{"sku": "B2702000800GC", "price": 1150, "title": " Bomba Água Mercedes Benz A160 1.6 2015 2016 A 270 200 04 0", "status": "under_review"}', '2026-04-16 17:44:39.789795+00'), ('f97bf791-fcb8-4435-8b43-8d806996840d', NULL, 'price_suggestion', '/marketplace/benchmarks/items/MLB5926187882/details', '1723354900', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "8e3f9d73-8d58-461f-b781-27c1c6347723", "sent": "2026-04-16T17:45:40.553Z", "topic": "price_suggestion", "actions": ["price_suggestion"], "user_id": 1723354900, "attempts": 5, "received": "2026-04-16T17:18:07.812Z", "resource": "/marketplace/benchmarks/items/MLB5926187882/details", "application_id": 4984880665306039}}', '2026-04-16 17:45:41.251306+00'), ('51c2c3cc-547f-4f21-a3a4-7cfb20ff2c5a', NULL, 'post_purchase', '/post-purchase/v1/claims/5494788036', '1723354900', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "9b9176db-fbb0-4c74-a9b6-075d2a2dc645", "sent": "2026-04-16T17:46:27.193Z", "topic": "post_purchase", "actions": ["claims"], "user_id": 1723354900, "attempts": 1, "received": "2026-04-16T17:46:27.112Z", "resource": "/post-purchase/v1/claims/5494788036", "application_id": 4984880665306039}}', '2026-04-16 17:46:28.073606+00'), ('3c755b19-9c43-4064-9d5b-977a4266a57f', NULL, 'price_suggestion', '/marketplace/benchmarks/items/MLB6413191762/details', '1723354900', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "b30bfb4d-ab31-4362-af5d-5f0929acc63f", "sent": "2026-04-16T17:47:15.6Z", "topic": "price_suggestion", "actions": ["price_suggestion"], "user_id": 1723354900, "attempts": 2, "received": "2026-04-16T17:41:56.219Z", "resource": "/marketplace/benchmarks/items/MLB6413191762/details", "application_id": 4984880665306039}}', '2026-04-16 17:47:16.418162+00'), ('acb78444-1192-44e8-8489-03de129630cf', NULL, 'post_purchase', '/post-purchase/v1/claims/5494788036', '1723354900', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "a1a3ed06-7085-43c9-9d62-894b30e97c8d", "sent": "2026-04-16T17:48:07.413Z", "topic": "post_purchase", "actions": ["claims"], "user_id": 1723354900, "attempts": 1, "received": "2026-04-16T17:48:07.306Z", "resource": "/post-purchase/v1/claims/5494788036", "application_id": 4984880665306039}}', '2026-04-16 17:48:08.386297+00'), ('59d43f99-ccfe-4ef6-bc2a-66f5fa6a6821', NULL, 'post_purchase', '/post-purchase/v1/claims/5494788036', '1723354900', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "9b9176db-fbb0-4c74-a9b6-075d2a2dc645", "sent": "2026-04-16T17:51:12.863Z", "topic": "post_purchase", "actions": ["claims"], "user_id": 1723354900, "attempts": 2, "received": "2026-04-16T17:46:27.112Z", "resource": "/post-purchase/v1/claims/5494788036", "application_id": 4984880665306039}}', '2026-04-16 17:51:14.024225+00'), ('136a42f0-6325-46fb-8075-1ef015f1e498', NULL, 'price_suggestion', '/marketplace/benchmarks/items/MLB5925948756/details', '1723354900', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "1d529af8-efb0-4a8c-9909-97aea80e5023", "sent": "2026-04-16T17:51:45.461Z", "topic": "price_suggestion", "actions": ["price_suggestion"], "user_id": 1723354900, "attempts": 4, "received": "2026-04-16T17:31:19.962Z", "resource": "/marketplace/benchmarks/items/MLB5925948756/details", "application_id": 4984880665306039}}', '2026-04-16 17:51:46.396668+00'), ('7d1f718a-4738-42d7-b482-e817552ee135', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4592119897', '2503596255', 'MLB4592119897', 'updated', '{"sku": "B2702000800GC", "price": 1150, "title": " Bomba Água Mercedes Benz A160 1.6 2015 2016 A 270 200 04 0", "status": "under_review"}', '2026-04-16 17:52:08.047459+00'), ('9d779113-ac66-4be4-b4b7-ab38c7046fd4', NULL, 'post_purchase', '/post-purchase/v1/claims/5494788036', '1723354900', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "a1a3ed06-7085-43c9-9d62-894b30e97c8d", "sent": "2026-04-16T17:52:41.834Z", "topic": "post_purchase", "actions": ["claims"], "user_id": 1723354900, "attempts": 2, "received": "2026-04-16T17:48:07.306Z", "resource": "/post-purchase/v1/claims/5494788036", "application_id": 4984880665306039}}', '2026-04-16 17:52:42.551197+00'), ('6a9ff858-f5d6-4f7a-8264-86ce66803177', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607788496', '2503596255', NULL, 'error', '{"reason": "token_expired"}', '2026-04-16 21:41:49.916588+00'), ('920baa55-2be6-4737-8b9a-616a1127eeb3', NULL, 'stock-locations', '/user-products/MLBU3903389150/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "02440b68-f54f-4396-a033-36f8b29b311f", "sent": "2026-04-16T17:53:03.835Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:53:03.711Z", "resource": "/user-products/MLBU3903389150/stock", "application_id": 4984880665306039}}', '2026-04-16 17:53:04.56833+00'), ('2c7975aa-6bb2-4be4-8635-89523d98964f', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602253257', '2503596255', 'MLB4602253257', 'updated', '{"sku": "B1643200130-KIT", "price": 2250, "title": "Par Amortecedor Dianteiro Mercedes Ml320 Ml350 Ml500 06/11", "status": "active"}', '2026-04-16 17:53:04.575339+00'), ('33ed509f-6962-4784-b1f8-399914a199e0', NULL, 'stock-locations', '/user-products/MLBU3892047907/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "636c4341-f80e-4381-bf9b-fc8805777c8e", "sent": "2026-04-16T17:53:04.436Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:53:04.31Z", "resource": "/user-products/MLBU3892047907/stock", "application_id": 4984880665306039}}', '2026-04-16 17:53:05.274269+00'), ('78cc3d71-1331-44d5-9747-87b80f1cf04e', NULL, 'stock-locations', '/user-products/MLBU3903392726/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "d5cd95c9-2837-4292-9b52-3c2814fa245a", "sent": "2026-04-16T17:53:21.172Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:53:21.096Z", "resource": "/user-products/MLBU3903392726/stock", "application_id": 4984880665306039}}', '2026-04-16 17:53:21.588842+00'), ('79975619-22a4-4039-8307-5b3bb6dc4682', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612795031', '2503596255', 'MLB4612795031', 'updated', '{"sku": "B31306863135", "price": 380, "title": " Coxim Batente Amortecedor Diant Bmw 116i 118i 120i 125i F2", "status": "paused"}', '2026-04-16 18:14:40.357221+00'), ('23a9759c-536f-4e4d-a97e-20451c01a7d5', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612784289', '2503596255', 'MLB4612784289', 'updated', '{"sku": "BLR092060", "price": 189, "title": "Sensor Desgaste Freio Traseiro Range Rover Evoque L551 18+ .", "status": "paused"}', '2026-04-16 18:14:54.976488+00'), ('22fd4838-1b78-4b63-9e15-3a3f2d0bbfe0', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607733426', '2503596255', 'MLB6607733426', 'updated', '{"sku": "B1563232000e1900", "price": 1680, "title": "Par Amortecedores Dianteiros Mercedes Gla 180 1.6 2015 2019", "status": "active"}', '2026-04-16 18:15:44.729383+00'), ('918762f3-95ed-40e9-a784-033ce73de0f1', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631001086', '2503596255', 'MLB6631001086', 'updated', '{"sku": "B17137609469", "price": 691, "title": "Reservatório Água Motor Bmtsr Bmw F23 2014-2021 Peça Nova Gt", "status": "paused"}', '2026-04-16 18:23:23.648698+00'), ('00069bc4-b50f-41e3-a84a-484550d6a035', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612794959', '2503596255', 'MLB4612794959', 'updated', '{"sku": "ZK818166AB02", "price": 330, "title": "Par Bucha Refil Mancal Bandeja Diant Bmw X2 F39 2020 2021", "status": "paused"}', '2026-04-16 18:23:43.753552+00'), ('a8f03105-7edf-4c4c-ada5-5e9c30a768bc', NULL, 'stock-locations', '/user-products/MLBU3911833164/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "d612871b-5f09-4294-b474-1f6ea1d25c11", "sent": "2026-04-16T18:24:21.452Z", "topic": "stock-locations", "actions": ["field:status", "action:created"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:24:21.321Z", "resource": "/user-products/MLBU3911833164/stock", "application_id": 4984880665306039}}', '2026-04-16 18:24:21.842532+00'), ('f9ad1041-c3ba-47c7-9ee2-d907ec59f36c', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612795633', '2503596255', 'MLB4612795633', 'updated', '{"sku": "A2729060060", "price": 612.11, "title": "Bobina Ignição Mercedes-benz C280 E280 Ml350 V6", "status": "paused"}', '2026-04-16 18:24:30.619102+00'), ('86e9444a-acc2-40d0-9c9e-1fdbf98a0795', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783355', '2503596255', 'MLB4612783355', 'updated', '{"sku": "TM97103", "price": 1050, "title": " Carcaça Válvula Termostato P/ Mercedes C180 C205 2015", "status": "paused"}', '2026-04-16 18:35:27.931044+00'), ('23658995-87c6-4479-8552-a8e26562120a', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631257674', '2503596255', 'MLB6631257674', 'inserted', '{"sku": null, "price": 1400, "title": "Coxim Do Motor 2007-2014 Mercedes-benz C200 1.8 Série W204", "status": "paused"}', '2026-04-16 18:49:33.06964+00'), ('21464ee2-2ab6-4727-ba95-8d4f4c107d9d', NULL, 'stock-locations', '/user-products/MLBU3900485601/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "95252181-0066-4cc8-9bb1-6c89639cf636", "sent": "2026-04-16T18:49:39.057Z", "topic": "stock-locations", "actions": ["field:status", "action:created"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:49:38.884Z", "resource": "/user-products/MLBU3900485601/stock", "application_id": 4984880665306039}}', '2026-04-16 18:49:39.379625+00'); INSERT INTO "public"."ml_webhook_logs" ("id", "user_id", "topic", "resource", "ml_user_id", "listing_id", "action", "details", "created_at") VALUES ('cf9f5320-c241-48d4-9b93-4e928d9e3f5e', NULL, 'user-products-families', '/sites/MLB/user-products-families/4014070070339344', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "b5afa8ad-2437-4c49-b58e-88f43ff99b24", "sent": "2026-04-16T18:49:46.704Z", "topic": "user-products-families", "actions": ["create"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:49:46.65Z", "resource": "/sites/MLB/user-products-families/4014070070339344", "application_id": 4984880665306039}}', '2026-04-16 18:49:47.073871+00'), ('b42e79c3-8b1a-42c0-b812-49b70939303a', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631269408', '2503596255', 'MLB6631269408', 'updated', '{"sku": "B17137609469", "price": 728, "title": "Reservatório Expansão Bmtsr P/ Bmw F20 F30 F31 F32 Peça Nova", "status": "paused"}', '2026-04-16 18:50:05.14589+00'), ('6bcdd9e2-3e99-4044-8a76-01d4a4cf1474', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631257644', '2503596255', 'MLB6631257644', 'updated', '{"sku": "B31306792211", "price": 188.62, "title": "Bieleta Dianteira Bmw 328i 2012 2013 2014 2015 2016 2017 F D", "status": "paused"}', '2026-04-16 18:50:06.23694+00'), ('5c49603f-c237-4f07-9e91-2ccdce7ed11b', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631258102', '2503596255', 'MLB6631258102', 'updated', '{"sku": null, "price": 1426, "title": "Par Amortecedor Bmw 220i F23 Traseiro 2018", "status": "paused"}', '2026-04-16 18:50:11.188165+00'), ('46f10b82-3276-4bba-88e9-683f985a80fe', NULL, 'items_prices', '/items/MLB6631209582/prices', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "d894e741-2d88-42fe-8b34-c4f6944a1200", "sent": "2026-04-16T18:50:13.622Z", "topic": "items_prices", "actions": [], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:50:13.529Z", "resource": "/items/MLB6631209582/prices", "application_id": 4984880665306039}}', '2026-04-16 18:50:13.944038+00'), ('583227cc-45d2-4a9e-8224-82acb6de52af', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631209582', '2503596255', 'MLB6631209582', 'updated', '{"sku": null, "price": 1344.98, "title": "Par Amortecedor Traseiro Bmw Série 2 F23 2018", "status": "paused"}', '2026-04-16 18:50:14.620908+00'), ('4a6a9229-6af8-43f7-9f9d-679fbf38d477', NULL, 'items_prices', '/items/MLB6631233694/prices', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "f98f6c18-bddd-4527-9616-42c2a5b25d2f", "sent": "2026-04-16T18:50:14.69Z", "topic": "items_prices", "actions": [], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:50:14.582Z", "resource": "/items/MLB6631233694/prices", "application_id": 4984880665306039}}', '2026-04-16 18:50:15.072642+00'), ('2446a2bb-6ba2-4303-82c0-c93b05d43384', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631209558', '2503596255', 'MLB6631209558', 'updated', '{"sku": "B2701800500", "price": 820, "title": "Trocador Calor A2701800810 Cla200 2017 2018 Turbo", "status": "paused"}', '2026-04-16 18:50:16.141195+00'), ('cdb418ff-a59c-454c-aee2-c5d55c9226fd', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607758924', '2503596255', 'MLB6607758924', 'updated', '{"sku": "2xB1643200026SP+1xB1643200130-KIT", "price": 3830, "title": "Par Amortecedor Dianteiro E 2 Kit Coxim Amortecedor E Coifa", "status": "active"}', '2026-04-16 17:53:21.380791+00'), ('097eba10-dc18-4a00-a7f0-417a622be9da', NULL, 'stock-locations', '/user-products/MLBU3892019563/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "8cb94cac-eb67-4b42-ab17-a4fbdb6febe5", "sent": "2026-04-16T17:54:22.277Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:54:22.214Z", "resource": "/user-products/MLBU3892019563/stock", "application_id": 4984880665306039}}', '2026-04-16 17:54:22.710924+00'), ('c85c4981-6171-4be5-a3cc-c92f2f68e42a', NULL, 'stock-locations', '/user-products/MLBU3892017843/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "0fad6ec7-754b-464b-b4de-20412838a36c", "sent": "2026-04-16T17:54:22.153Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:54:22.03Z", "resource": "/user-products/MLBU3892017843/stock", "application_id": 4984880665306039}}', '2026-04-16 17:54:22.851915+00'), ('269a3532-9238-4385-a0a3-d351ecd06df8', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602219141', '2503596255', 'MLB4602219141', 'updated', '{"sku": "2425301", "price": 498.94, "title": "Jogo Pastilha Freio Traseira Textar W204", "status": "active"}', '2026-04-16 17:54:23.512866+00'), ('247ddf64-be0f-4206-ba3d-6c6a6a8d9d85', NULL, 'stock-locations', '/user-products/MLBU3892020509/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "b03f1773-2d79-4fdf-8aeb-ff9efc9f54ce", "sent": "2026-04-16T17:54:23.175Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:54:23.045Z", "resource": "/user-products/MLBU3892020509/stock", "application_id": 4984880665306039}}', '2026-04-16 17:54:23.576032+00'), ('be69208d-dc1d-4c80-85b7-78245f7ea6f5', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602240251', '2503596255', 'MLB4602240251', 'updated', '{"sku": "2425301", "price": 498.94, "title": "Pastilha Traseira Textar Mercedes C180 2007-14", "status": "active"}', '2026-04-16 17:54:23.586208+00'), ('a6adbfde-592d-492a-b734-0db04dc2f1a2', NULL, 'stock-locations', '/user-products/MLBU3903350022/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "8b344282-a237-4f9b-9502-6dd3b0b26a7f", "sent": "2026-04-16T17:54:23.495Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:54:23.402Z", "resource": "/user-products/MLBU3903350022/stock", "application_id": 4984880665306039}}', '2026-04-16 17:54:23.904105+00'), ('ee958dbf-448b-4a73-be89-9d3b1a8ea718', NULL, 'stock-locations', '/user-products/MLBU3903327356/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "69695678-1371-429d-8a29-9018c25ba277", "sent": "2026-04-16T17:54:23.535Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:54:23.427Z", "resource": "/user-products/MLBU3903327356/stock", "application_id": 4984880665306039}}', '2026-04-16 17:54:23.960874+00'), ('bb26ee30-43d0-47ca-90a1-db12eb682d6e', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607724844', '2503596255', 'MLB6607724844', 'updated', '{"sku": "2425301", "price": 470.59, "title": "Pastilha Traseira Textar Classe C W204", "status": "active"}', '2026-04-16 17:54:24.094759+00'), ('4586bfbf-01a6-4423-963d-32c5a99e06de', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607675718', '2503596255', 'MLB6607675718', 'updated', '{"sku": "2425301", "price": 498.94, "title": "Pastilha Freio Textar C200 C220 W204 07-14", "status": "active"}', '2026-04-16 17:54:24.27062+00'), ('b4d36432-9f27-4b7f-a73b-d433ea5e915e', NULL, 'stock-locations', '/user-products/MLBU3903327916/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "e78ee013-7295-4b1e-ae9a-bd5a18ef1acb", "sent": "2026-04-16T17:54:23.88Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:54:23.798Z", "resource": "/user-products/MLBU3903327916/stock", "application_id": 4984880665306039}}', '2026-04-16 17:54:24.319105+00'), ('761e7933-6b13-4e07-84df-f1dd60926400', NULL, 'stock-locations', '/user-products/MLBU3903331044/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "27fd8fca-4b5e-41a7-a794-88c0fb3bc479", "sent": "2026-04-16T17:54:24.05Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:54:23.948Z", "resource": "/user-products/MLBU3903331044/stock", "application_id": 4984880665306039}}', '2026-04-16 17:54:24.403219+00'), ('9d9cc61a-5a9c-43dc-8118-2d01479d8295', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607699176', '2503596255', 'MLB6607699176', 'updated', '{"sku": "2425301", "price": 498.94, "title": "Pastilha Freio Textar Mercedes C 2007-14", "status": "active"}', '2026-04-16 17:54:24.540174+00'), ('2abcb40f-8bb0-4691-b4e0-e71f752b894d', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607710082', '2503596255', 'MLB6607710082', 'updated', '{"sku": "2425301", "price": 470.59, "title": "Pastilha Freio Traseira Textar C180 C200 07-14", "status": "active"}', '2026-04-16 17:54:25.114857+00'), ('69fef2f4-bfaf-460f-8054-6ef95718925f', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607700584', '2503596255', 'MLB6607700584', 'updated', '{"sku": "2425301", "price": 470.59, "title": "Pastilha Traseira Textar Classe C 2007-2014", "status": "active"}', '2026-04-16 17:54:25.159987+00'), ('218055b9-d891-41f3-b015-51ad5751afff', NULL, 'stock-locations', '/user-products/MLBU3892002161/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "819226b2-fec2-43dd-9772-23c1503db642", "sent": "2026-04-16T17:54:25.362Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:54:25.229Z", "resource": "/user-products/MLBU3892002161/stock", "application_id": 4984880665306039}}', '2026-04-16 17:54:25.890858+00'), ('6119580c-a6c9-46a2-92e0-b8b27411ff5a', NULL, 'stock-locations', '/user-products/MLBU3892002421/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "3ba7844f-7c60-41a8-9b15-d1ec2abef0b6", "sent": "2026-04-16T17:54:26.147Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:54:25.963Z", "resource": "/user-products/MLBU3892002421/stock", "application_id": 4984880665306039}}', '2026-04-16 17:54:26.510785+00'), ('a53d83ad-62d0-4634-b202-a7a00ff80f86', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607700928', '2503596255', 'MLB6607700928', 'updated', '{"sku": "2425301", "price": 498.94, "title": "Pastilha De Freio Traseiro Mercedes C180 C200 C220 2007 / 14", "status": "active"}', '2026-04-16 17:54:26.589513+00'), ('7d4a76dd-bdb2-4a3b-b027-f08a48bb9bcc', NULL, 'stock-locations', '/user-products/MLBU3903332038/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "ad564466-0d4c-47b9-af67-1df5d1786670", "sent": "2026-04-16T17:54:26.186Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:54:25.976Z", "resource": "/user-products/MLBU3903332038/stock", "application_id": 4984880665306039}}', '2026-04-16 17:54:26.655484+00'), ('9b6755ee-a1c1-4899-b080-1e6dbea9e542', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607725878', '2503596255', 'MLB6607725878', 'updated', '{"sku": "2425301", "price": 498.94, "title": "Pastilha Textar Traseira Mercedes C220 07-14", "status": "active"}', '2026-04-16 17:54:27.707225+00'), ('090a5c8b-6b76-4dbb-9b64-bae34ac74f5b', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607738244', '2503596255', NULL, 'error', '{"reason": "token_expired"}', '2026-04-16 21:41:49.94179+00'), ('1aae0bd5-8281-4462-8bf7-7b43e3423cda', NULL, 'stock-locations', '/user-products/MLBU3892021039/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "f9aeeca4-56c0-45d6-bf13-3df14642de69", "sent": "2026-04-16T17:54:26.871Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:54:26.757Z", "resource": "/user-products/MLBU3892021039/stock", "application_id": 4984880665306039}}', '2026-04-16 17:54:27.500995+00'), ('1da336a3-41b5-4b56-b293-2e38cb7fb342', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631000898', '2503596255', 'MLB6631000898', 'updated', '{"sku": "BLR092060", "price": 180, "title": "Sensor Indicador Desgaste Freio Rover Evoque Traseiro L551 .", "status": "paused"}', '2026-04-16 18:14:41.122673+00'), ('52aa7d96-55c0-4c70-b5c7-0cb244511c5e', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989924', '2503596255', 'MLB6630989924', 'updated', '{"sku": "AJ2464701294", "price": 1556.25, "title": " Bomba Combustível Para Mercedes A B Cla Gla 200 A246470129", "status": "paused"}', '2026-04-16 18:14:47.501559+00'), ('bd758d46-d583-4dae-8178-7cda26ddc442', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612784267', '2503596255', 'MLB4612784267', 'updated', '{"sku": "BLR092060", "price": 189, "title": "Cabo Sensor Desgaste Pastilha Range Rover Evoque Traseiro 3m", "status": "active"}', '2026-04-16 18:14:50.164579+00'), ('7fe69e42-c5e2-407e-b412-0dd8f333b191', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989474', '2503596255', 'MLB6630989474', 'updated', '{"sku": "11428575211", "price": 89, "title": " Filtro Óleo Bmw 120i 320i 328i 330i 520i X3 X4 X5 Z4 F20 G", "status": "paused"}', '2026-04-16 18:14:55.751693+00'), ('bcbae755-88c7-4899-9ec6-09805c302c1c', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607757760', '2503596255', 'MLB6607757760', 'updated', '{"sku": "B2463230020", "price": 290, "title": "Coxim Amortecedor Mercedes Gla250 2.0 4matic 2013 À 2018", "status": "active"}', '2026-04-16 18:15:11.184918+00'), ('640d64de-33a9-4d94-a7c8-f788d4b0832f', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612795381', '2503596255', 'MLB4612795381', 'updated', '{"sku": "B22118743621", "price": 590, "title": "Coxim Direito Motor Bmw X1 F48 2015 2016 2017 2018 2019", "status": "paused"}', '2026-04-16 18:15:33.431024+00'), ('49ceb377-2ba6-4ab9-aa27-45f6c04fe7bd', NULL, 'stock-locations', '/user-products/MLBU3892019991/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "25236bb3-4a42-46d3-9c9d-b47b6570c13e", "sent": "2026-04-16T18:15:42.409Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:15:42.307Z", "resource": "/user-products/MLBU3892019991/stock", "application_id": 4984880665306039}}', '2026-04-16 18:15:42.737516+00'), ('9df47595-9c9e-429c-a0ff-ff7fbf0e4f85', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989576', '2503596255', 'MLB6630989576', 'updated', '{"sku": "47324", "price": 650, "title": "Coxim Amort.diant Mercedes Cla180/cla200/a180/a200/gla200", "status": "paused"}', '2026-04-16 18:15:45.137244+00'), ('f1de0a91-04cb-4b52-857b-104a417dda07', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612811909', '2503596255', 'MLB4612811909', 'inserted', '{"sku": "AJDLR036126", "price": 1399, "title": "Bomba Combustivel Lr036126 Land Rover", "status": "paused"}', '2026-04-16 18:24:16.891366+00'), ('07f390ad-6930-4527-a053-3cbd50f6fda1', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612835867', '2503596255', 'MLB4612835867', 'updated', '{"sku": "37206875177", "price": 5224.05, "title": "Compressor 37206850555 X6 F16 F86 M 4.4", "status": "paused"}', '2026-04-16 18:24:20.143573+00'), ('79b9a9f4-2d42-4045-bd5a-a49855f001a4', NULL, 'stock-locations', '/user-products/MLBU3911833358/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "7885d49c-66eb-46ac-933a-8fb05041e4b4", "sent": "2026-04-16T18:24:29.077Z", "topic": "stock-locations", "actions": ["field:status", "action:created"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:24:28.978Z", "resource": "/user-products/MLBU3911833358/stock", "application_id": 4984880665306039}}', '2026-04-16 18:24:29.481733+00'), ('535fba6c-9626-43f7-8507-ab08302d581b', NULL, 'user-products-families', '/sites/MLB/user-products-families/45015370536083', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "4a6d939b-4ffe-4657-9e5a-49357c736cfa", "sent": "2026-04-16T18:24:29.987Z", "topic": "user-products-families", "actions": ["create"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:24:29.769Z", "resource": "/sites/MLB/user-products-families/45015370536083", "application_id": 4984880665306039}}', '2026-04-16 18:24:30.263099+00'), ('d70158e0-f205-4952-bde8-1c5994e14b8a', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783259', '2503596255', 'MLB4612783259', 'updated', '{"sku": "B1643200026SP", "price": 790, "title": "Coxim Amortecedor Dianteiro P/ Mercedes Ml320 W164 2011", "status": "paused"}', '2026-04-16 18:24:51.888857+00'), ('9df0a1c7-97a9-45c7-96db-ee175830fe73', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631000608', '2503596255', 'MLB6631000608', 'updated', '{"sku": "B22118743621", "price": 590, "title": " Coxim Motor Lado Direito Bmw 220i X1 F48 X2 F39 Mini F56", "status": "paused"}', '2026-04-16 18:35:29.709892+00'), ('5591c3fe-1902-4960-9f63-30003e7a9f77', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631269028', '2503596255', 'MLB6631269028', 'updated', '{"sku": "305008e303301", "price": 1200, "title": "Amortecedor Dianteiro Bmw 320i 330i G20 2019 2020 2021 Lado", "status": "paused"}', '2026-04-16 18:49:33.797007+00'), ('2eb59357-3476-4e62-9c23-19bcbcf1fa40', NULL, 'items_prices', '/items/MLB6631269074/prices', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "13903368-eb6d-4856-80e5-6ffd94bcc828", "sent": "2026-04-16T18:49:35.026Z", "topic": "items_prices", "actions": [], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:49:34.864Z", "resource": "/items/MLB6631269074/prices", "application_id": 4984880665306039}}', '2026-04-16 18:49:35.435725+00'), ('e5f2bd68-539e-4efa-b5bc-7ffa016e347f', NULL, 'user-products-families', '/sites/MLB/user-products-families/4490885331187667', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "c1517663-907e-4b67-8af4-801f8b2bed9b", "sent": "2026-04-16T18:49:35.529Z", "topic": "user-products-families", "actions": ["create"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:49:34.428Z", "resource": "/sites/MLB/user-products-families/4490885331187667", "application_id": 4984880665306039}}', '2026-04-16 18:49:35.896229+00'), ('463ab9d6-12ca-48b2-81de-25c9c57b7b91', NULL, 'user-products-families', '/sites/MLB/user-products-families/1029074115913873', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "981a2b0b-2603-4b9f-a81b-8c098587c3db", "sent": "2026-04-16T18:49:37.286Z", "topic": "user-products-families", "actions": ["modified"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:49:36.848Z", "resource": "/sites/MLB/user-products-families/1029074115913873", "application_id": 4984880665306039}}', '2026-04-16 18:49:37.732764+00'), ('179fb19f-a111-4b35-a8b1-c8892cb581fc', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631233520', '2503596255', 'MLB6631233520', 'inserted', '{"sku": "BLR092060", "price": 180, "title": "Sensor De Desgaste Pastilha Freio Traseiro Evoque L551 18+ .", "status": "paused"}', '2026-04-16 18:49:59.200363+00'), ('b9a350a5-92e4-40c9-bf9f-4e9f8f814eed', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631233520', '2503596255', 'MLB6631233520', 'updated', '{"sku": "BLR092060", "price": 180, "title": "Sensor De Desgaste Pastilha Freio Traseiro Evoque L551 18+ .", "status": "paused"}', '2026-04-16 18:50:02.833293+00'); INSERT INTO "public"."ml_webhook_logs" ("id", "user_id", "topic", "resource", "ml_user_id", "listing_id", "action", "details", "created_at") VALUES ('55800d5f-ca66-43f0-9415-02bf92fd68a3', NULL, 'items_prices', '/items/MLB6631258052/prices', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "9e90cbf0-7fcd-4018-a643-b7cc522b31ca", "sent": "2026-04-16T18:50:05.545Z", "topic": "items_prices", "actions": [], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:50:05.365Z", "resource": "/items/MLB6631258052/prices", "application_id": 4984880665306039}}', '2026-04-16 18:50:05.914332+00'), ('1a6c5721-7b7a-4e5c-8107-9b77802d5826', NULL, 'stock-locations', '/user-products/MLBU3892000529/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "f511947c-2227-4649-a2b6-fb3fb3f18b96", "sent": "2026-04-16T17:54:26.877Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:54:26.77Z", "resource": "/user-products/MLBU3892000529/stock", "application_id": 4984880665306039}}', '2026-04-16 17:54:27.38438+00'), ('9bc6140c-b261-4818-9a5f-8759f765418c', NULL, 'stock-locations', '/user-products/MLBU3903357318/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "1a159e33-ba11-4ed3-8ce9-e59858e7feb1", "sent": "2026-04-16T17:54:28.741Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:54:28.686Z", "resource": "/user-products/MLBU3903357318/stock", "application_id": 4984880665306039}}', '2026-04-16 17:54:29.163727+00'), ('3f26b1e8-f211-4a24-bc0a-c4a24b768368', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607700956', '2503596255', 'MLB6607700956', 'updated', '{"sku": "2425301", "price": 498.94, "title": "Pastilha Traseira Textar Classe C W204", "status": "active"}', '2026-04-16 17:54:30.285949+00'), ('b38f07e0-eb03-4fba-bcdc-e8f10bb08eb3', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612784227', '2503596255', 'MLB4612784227', 'updated', '{"sku": "B17137609469", "price": 728, "title": "Tanque Expansão Sistema Bmtsr Bmw F20 F21 F30 Bmw Compatível", "status": "paused"}', '2026-04-16 18:14:42.499594+00'), ('c6463619-e001-43d1-986c-9112946be57b', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783815', '2503596255', 'MLB4612783815', 'updated', '{"sku": "900126", "price": 235.8, "title": "Kit Batente Amortecedor Traseiro Bmw X1 E84 2011 2012 Sach", "status": "paused"}', '2026-04-16 18:14:49.653584+00'), ('436fd20d-a589-46b8-bb4e-f7ac7223c1a0', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612795031', '2503596255', 'MLB4612795031', 'updated', '{"sku": "B31306863135", "price": 380, "title": " Coxim Batente Amortecedor Diant Bmw 116i 118i 120i 125i F2", "status": "paused"}', '2026-04-16 18:14:51.65149+00'), ('0d005915-2913-4a39-8891-cf75a6cc6d39', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783815', '2503596255', 'MLB4612783815', 'updated', '{"sku": "900126", "price": 235.8, "title": "Kit Batente Amortecedor Traseiro Bmw X1 E84 2011 2012 Sach", "status": "paused"}', '2026-04-16 18:15:03.758997+00'), ('189bd630-7eab-4788-9989-65f008835bc3', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612795227', '2503596255', 'MLB4612795227', 'updated', '{"sku": "BKR6EGPKIT4", "price": 156.89, "title": "4 Velas Ignição Ngk Platina Sandero 1.6 8v 2011 2012 2013", "status": "paused"}', '2026-04-16 18:15:05.806847+00'), ('3c92d391-56ed-4583-9fb3-0fcc9bfecc5d', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602220357', '2503596255', 'MLB4602220357', 'updated', '{"sku": "B1563232000e1900", "price": 1680, "title": "Par Amortecedor Dianteiro Mercedes Gla 220 D Diesel", "status": "active"}', '2026-04-16 18:15:43.092366+00'), ('5cabb045-0ac3-46dc-adf9-6cb19efda690', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602221311', '2503596255', 'MLB4602221311', 'updated', '{"sku": "B1563232000e1900", "price": 1680, "title": "Par Amortecedor Dianteiro Mercedes Gla 220 Cdi 4matic", "status": "active"}', '2026-04-16 18:15:43.691838+00'), ('11e037be-507a-466e-8c85-d95e8017fe3e', NULL, 'stock-locations', '/user-products/MLBU3892027633/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "f1c80be9-3fbd-445f-9ce9-c3908f24d8be", "sent": "2026-04-16T18:15:44.487Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:15:44.421Z", "resource": "/user-products/MLBU3892027633/stock", "application_id": 4984880665306039}}', '2026-04-16 18:15:44.807564+00'), ('df2ce195-1d54-4bf2-bb5a-2da08d22ae16', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783259', '2503596255', 'MLB4612783259', 'updated', '{"sku": "B1643200026SP", "price": 790, "title": "Coxim Amortecedor Dianteiro P/ Mercedes Ml320 W164 2011", "status": "paused"}', '2026-04-16 18:25:03.561212+00'), ('9baa7a6b-c784-409a-bf5c-10e290ac41cb', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612824677', '2503596255', 'MLB4612824677', 'updated', '{"sku": "37206875177", "price": 5224.05, "title": "Compressor 37206868998 Bmw X5 X6 F15 F16", "status": "paused"}', '2026-04-16 18:36:10.538579+00'), ('9432ff03-3649-4d9e-8324-ede3f686dbdd', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631269028', '2503596255', 'MLB6631269028', 'updated', '{"sku": "305008e303301", "price": 1200, "title": "Amortecedor Dianteiro Bmw 320i 330i G20 2019 2020 2021 Lado", "status": "paused"}', '2026-04-16 18:49:34.184597+00'), ('345da79b-fe55-401c-88bc-d2b7b90cf5ad', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631269074', '2503596255', 'MLB6631269074', 'inserted', '{"sku": null, "price": 6800, "title": "Bomba Alta Pressão Mercedes C250 2015 1.8 A2710703701", "status": "paused"}', '2026-04-16 18:49:35.185855+00'), ('f333a45b-0449-46f2-a501-3950d46ba638', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631269098', '2503596255', 'MLB6631269098', 'updated', '{"sku": "LR047630", "price": 1524.38, "title": "Bateria Auxiliar Land Rover Range Rover Sport 20 5.0 V8 Esqu", "status": "paused"}', '2026-04-16 18:49:38.400752+00'), ('d7d0c332-1c01-4923-ad1b-11e874e3ed60', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631257744', '2503596255', 'MLB6631257744', 'inserted', '{"sku": "LR047630", "price": 1524.38, "title": "Bateria Auxiliar Range Rover Evoque 2015-2016 Lr047630 Esque", "status": "paused"}', '2026-04-16 18:49:38.822456+00'), ('2c601352-639c-4e2f-a552-d634ebf44a95', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631257744', '2503596255', 'MLB6631257744', 'updated', '{"sku": "LR047630", "price": 1524.38, "title": "Bateria Auxiliar Range Rover Evoque 2015-2016 Lr047630 Esque", "status": "paused"}', '2026-04-16 18:49:39.27489+00'), ('13692f06-3216-4f3f-92b6-80d81bb98cef', NULL, 'stock-locations', '/user-products/MLBU3911891834/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "18d82ab1-cf2d-4306-a2e9-67aedf4ed8de", "sent": "2026-04-16T18:49:58.788Z", "topic": "stock-locations", "actions": ["field:status", "action:created"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:49:58.705Z", "resource": "/user-products/MLBU3911891834/stock", "application_id": 4984880665306039}}', '2026-04-16 18:49:59.217423+00'), ('57d24c4a-d667-4db0-ad97-99ca1a70469b', NULL, 'stock-locations', '/user-products/MLBU3911892022/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "c63bd01f-27fd-426c-9d58-8ab6e5747f39", "sent": "2026-04-16T18:49:59.691Z", "topic": "stock-locations", "actions": ["field:status", "action:created"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:49:59.595Z", "resource": "/user-products/MLBU3911892022/stock", "application_id": 4984880665306039}}', '2026-04-16 18:50:00.049256+00'), ('7f36a97c-aace-4f98-bba3-68220044329c', NULL, 'user-products-families', '/sites/MLB/user-products-families/3173051883023443', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "6ca6f148-5b62-4b3d-a125-a0773822f556", "sent": "2026-04-16T18:50:03.005Z", "topic": "user-products-families", "actions": ["create"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:50:02.925Z", "resource": "/sites/MLB/user-products-families/3173051883023443", "application_id": 4984880665306039}}', '2026-04-16 18:50:03.345399+00'), ('ab26aaf8-f19e-40f1-b5c7-37f11abf0add', NULL, 'user-products-families', '/sites/MLB/user-products-families/4258129410995410', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "472f73da-02bb-4a31-a5fd-66ada16825a8", "sent": "2026-04-16T18:50:05.99Z", "topic": "user-products-families", "actions": ["create"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:50:05.919Z", "resource": "/sites/MLB/user-products-families/4258129410995410", "application_id": 4984880665306039}}', '2026-04-16 18:50:06.446508+00'), ('ef6107da-418c-4d95-b9bd-fd730a434bc4', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631258052', '2503596255', 'MLB6631258052', 'updated', '{"sku": "BLR092060", "price": 180, "title": "Sensor Desgaste Pastilha Freio Traseiro Rover Evoque L551 3m", "status": "paused"}', '2026-04-16 18:50:07.61121+00'), ('c2465508-0927-411e-86ef-45f2171a3257', NULL, 'stock-locations', '/user-products/MLBU3903353446/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "68d7ffde-d7bd-4c31-8f3f-fa5e5c6435bf", "sent": "2026-04-16T17:54:27.086Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:54:26.982Z", "resource": "/user-products/MLBU3903353446/stock", "application_id": 4984880665306039}}', '2026-04-16 17:54:27.531762+00'), ('9165ea82-4bd6-486f-b96c-fc3a82fa053b', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602221821', '2503596255', 'MLB4602221821', 'updated', '{"sku": "2425301", "price": 498.94, "title": "Pastilha Freio Traseira Textar C180 C200", "status": "active"}', '2026-04-16 17:54:27.676423+00'), ('505632d8-bdf5-4030-afac-6cd51ff6be94', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602219683', '2503596255', 'MLB4602219683', 'updated', '{"sku": "2425301", "price": 470.59, "title": "Pastilha Traseira Textar C180 C200 C220", "status": "active"}', '2026-04-16 17:54:28.191908+00'), ('98ce8a62-0f73-493f-a262-0b7127c2d9a4', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607727282', '2503596255', 'MLB6607727282', 'updated', '{"sku": "2425301", "price": 470.59, "title": "Pastilha Textar Traseira Mercedes C220 07-14", "status": "active"}', '2026-04-16 17:54:30.814585+00'), ('89d7bb8b-3104-49ce-9a86-5917ecafefda', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612807297', '2503596255', 'MLB4612807297', 'updated', '{"sku": "B17137609469", "price": 691, "title": "Reservatório Água Motor Bmtsr Bmw F20 2010-2019 Peça Nova Gt", "status": "paused"}', '2026-04-16 18:14:43.016878+00'), ('12ceb984-3e4b-4419-a145-ba57a74b8d45', NULL, 'stock-locations', '/user-products/MLBU3892020667/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "0e8b22f0-e83a-4d81-b4c0-555010e8c515", "sent": "2026-04-16T18:15:43.549Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:15:43.33Z", "resource": "/user-products/MLBU3892020667/stock", "application_id": 4984880665306039}}', '2026-04-16 18:15:43.941702+00'), ('4569de82-1665-4858-95f0-7b005793e6f7', NULL, 'stock-locations', '/user-products/MLBU3903373272/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "3cf06683-bfae-4afa-bc58-cde7ae188ae0", "sent": "2026-04-16T18:15:44.792Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:15:44.692Z", "resource": "/user-products/MLBU3903373272/stock", "application_id": 4984880665306039}}', '2026-04-16 18:15:45.134908+00'), ('00c03944-a5bb-4c5c-b123-7ef1b9a38212', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989576', '2503596255', 'MLB6630989576', 'updated', '{"sku": "47324", "price": 650, "title": "Coxim Amort.diant Mercedes Cla180/cla200/a180/a200/gla200", "status": "paused"}', '2026-04-16 18:25:05.472997+00'), ('ab6b2f30-3e78-4af8-93aa-ad0cb1feead4', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612806479', '2503596255', 'MLB4612806479', 'updated', '{"sku": "318292e293", "price": 1999, "title": "Par Amortecedor Dianteiro Bilstein Bmw X2 - 2017-2021", "status": "paused"}', '2026-04-16 18:37:32.549501+00'), ('4f1fd97e-9263-4134-8b82-1738810753c2', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631269074', '2503596255', 'MLB6631269074', 'updated', '{"sku": null, "price": 6800, "title": "Bomba Alta Pressão Mercedes C250 2015 1.8 A2710703701", "status": "paused"}', '2026-04-16 18:49:35.798771+00'), ('70f2ae03-122b-4bad-a07d-304e30e6fbfa', NULL, 'items_prices', '/items/MLB6631233250/prices', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "5b20cd63-6829-4db8-9400-b010525089a6", "sent": "2026-04-16T18:49:36.919Z", "topic": "items_prices", "actions": [], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:49:36.825Z", "resource": "/items/MLB6631233250/prices", "application_id": 4984880665306039}}', '2026-04-16 18:49:37.337368+00'), ('d989ee96-5216-4c41-b558-5367763250e9', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631269098', '2503596255', 'MLB6631269098', 'inserted', '{"sku": "LR047630", "price": 1524.38, "title": "Bateria Auxiliar Land Rover Range Rover Sport 20 5.0 V8 Esqu", "status": "paused"}', '2026-04-16 18:49:38.010552+00'), ('012487c4-da79-4a2e-9817-cf84715963af', NULL, 'stock-locations', '/user-products/MLBU3911891210/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "d71b808f-92f7-4b0a-85a1-891f86e02ef0", "sent": "2026-04-16T18:49:38.244Z", "topic": "stock-locations", "actions": ["field:status", "action:created"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:49:35.22Z", "resource": "/user-products/MLBU3911891210/stock", "application_id": 4984880665306039}}', '2026-04-16 18:49:38.547137+00'), ('6b81d614-e6bf-4c31-a941-a8e3a6d881bd', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631257744', '2503596255', 'MLB6631257744', 'updated', '{"sku": "LR047630", "price": 1524.38, "title": "Bateria Auxiliar Range Rover Evoque 2015-2016 Lr047630 Esque", "status": "paused"}', '2026-04-16 18:49:39.620946+00'), ('9704b6a0-2d4e-4445-85ac-2339b5e40a21', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631233528', '2503596255', 'MLB6631233528', 'inserted', '{"sku": "B17137609469", "price": 691, "title": "Reservatório Água Motor Bmtsr Bmw F32 2013-2020 Peça Nova Gt", "status": "paused"}', '2026-04-16 18:49:59.804488+00'), ('35cfdf2b-50ab-4a05-8b57-ff887324e02f', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631269408', '2503596255', 'MLB6631269408', 'inserted', '{"sku": "B17137609469", "price": 728, "title": "Reservatório Expansão Bmtsr P/ Bmw F20 F30 F31 F32 Peça Nova", "status": "paused"}', '2026-04-16 18:50:02.621066+00'), ('f72f5ab2-94e9-4c4f-a7c9-1207cf0c48eb', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631258052', '2503596255', 'MLB6631258052', 'inserted', '{"sku": "BLR092060", "price": 180, "title": "Sensor Desgaste Pastilha Freio Traseiro Rover Evoque L551 3m", "status": "paused"}', '2026-04-16 18:50:06.034924+00'), ('d4e3d733-e139-4be4-8a07-876e8214aeba', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631209484', '2503596255', 'MLB6631209484', 'updated', '{"sku": "B12138616153", "price": 339.55, "title": "Bobina Ignição Bmtsr Bmw Série 3 E46 E90 F30 Z3 Z4 X3", "status": "paused"}', '2026-04-16 18:50:06.58+00'), ('907d7a17-b63b-4a11-83f3-bc6068eb89eb', NULL, 'stock-locations', '/user-products/MLBU3911894094/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "7d9b22a7-c386-46e8-8ec5-808ec79100f5", "sent": "2026-04-16T18:50:10.315Z", "topic": "stock-locations", "actions": ["field:status", "action:created"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:50:10.242Z", "resource": "/user-products/MLBU3911894094/stock", "application_id": 4984880665306039}}', '2026-04-16 18:50:10.791547+00'), ('31a118a3-fd27-43cd-91b9-a6f9d31a8f53', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631269098', '2503596255', 'MLB6631269098', 'updated', '{"sku": "LR047630", "price": 1524.38, "title": "Bateria Auxiliar Land Rover Range Rover Sport 20 5.0 V8 Esqu", "status": "paused"}', '2026-04-16 18:50:12.000802+00'), ('09c03a4a-05f3-4b50-97a9-962fef444607', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631257744', '2503596255', 'MLB6631257744', 'updated', '{"sku": "LR047630", "price": 1524.38, "title": "Bateria Auxiliar Range Rover Evoque 2015-2016 Lr047630 Esque", "status": "paused"}', '2026-04-16 18:50:13.168135+00'), ('b2584da2-5fb9-460a-a18f-e7e355ce96cc', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631233680', '2503596255', 'MLB6631233680', 'updated', '{"sku": null, "price": 1344.98, "title": "Par Amortecedor Traseiro Bmw F23 2018", "status": "paused"}', '2026-04-16 18:50:14.228392+00'), ('88e08e22-2818-4176-bc52-14dcf652573b', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631209582', '2503596255', 'MLB6631209582', 'updated', '{"sku": null, "price": 1344.98, "title": "Par Amortecedor Traseiro Bmw Série 2 F23 2018", "status": "paused"}', '2026-04-16 18:50:14.6773+00'), ('4b604bed-42ad-4eef-a924-39688fff07af', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631233694', '2503596255', 'MLB6631233694', 'updated', '{"sku": "B2701800500", "price": 820, "title": "Trocador Calor Cla Carrinha X117 2017 2018 Turbo", "status": "paused"}', '2026-04-16 18:50:18.336311+00'), ('3f0de687-0ecf-4edd-92f2-fc4a5dbac162', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602290815', '2503596255', NULL, 'error', '{"reason": "token_expired"}', '2026-04-16 21:41:50.227421+00'), ('fa65870a-e3f2-4c24-9f57-5dea942f6e24', NULL, 'stock-locations', '/user-products/MLBU3903353712/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "41ad56ca-7d3c-4227-a3e2-8b955f88da30", "sent": "2026-04-16T17:54:27.296Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:54:27.143Z", "resource": "/user-products/MLBU3903353712/stock", "application_id": 4984880665306039}}', '2026-04-16 17:54:27.720224+00'); INSERT INTO "public"."ml_webhook_logs" ("id", "user_id", "topic", "resource", "ml_user_id", "listing_id", "action", "details", "created_at") VALUES ('9080cb6d-9ba4-4beb-85b6-12ef21c7d329', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630990314', '2503596255', 'MLB6630990314', 'updated', '{"sku": "BLR161571", "price": 2310, "title": "Bomba De Água Bmtsr Range Rover Iv L405 L494 L663 | Garantia", "status": "paused"}', '2026-04-16 18:14:43.419178+00'), ('f0e81b38-d655-454e-a824-e3e0151e9d4f', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783787', '2503596255', 'MLB4612783787', 'updated', '{"sku": "900126", "price": 250, "title": "Kit Batente Amortecedor Traseiro Bmw X1 E84 2009-2012", "status": "paused"}', '2026-04-16 18:14:46.185055+00'), ('be889d7d-3b99-473c-9a66-4611df1511e9', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612820267', '2503596255', 'MLB4612820267', 'updated', '{"sku": "B12138616153", "price": 360, "title": "Bobina Injeção Motor Bmw Bmtsr Série 1 3 5 6 7 8", "status": "paused"}', '2026-04-16 18:14:51.177668+00'), ('95de666f-4894-4994-be3e-05404181ae7b', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783425', '2503596255', 'MLB4612783425', 'updated', '{"sku": "47324", "price": 380, "title": "Coxim Amortecedor Mercedes A200 B200 Cla200 2016 2017 2018", "status": "paused"}', '2026-04-16 18:14:55.956626+00'), ('e3aebe6f-07fc-4f9d-a03a-814d29156efb', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612807361', '2503596255', 'MLB4612807361', 'updated', '{"sku": "B17137609469", "price": 691, "title": "Reservatório Água Motor Bmtsr Bmw F34 Gt 2012- Arrefecimento", "status": "active"}', '2026-04-16 18:14:57.521975+00'), ('8978240e-d601-4849-b462-ef78a41afb23', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631001128', '2503596255', 'MLB6631001128', 'updated', '{"sku": "B12138616153", "price": 360, "title": "Bobina Motor Bmtsr Bmw Série 1 3 5 6 7 X1 X3 X5 X6", "status": "paused"}', '2026-04-16 18:15:00.933649+00'), ('dda404f8-d697-40e9-a273-958c06bcfecb', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612795935', '2503596255', 'MLB4612795935', 'updated', '{"sku": "B17137609469", "price": 728, "title": "Reservatório De Água Bmw 114i 116i 118i 120i 125i N13 N20", "status": "paused"}', '2026-04-16 18:15:03.717591+00'), ('66b4f555-e25e-45e8-b659-90e3daecf25c', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607744210', '2503596255', 'MLB6607744210', 'updated', '{"sku": "B34116850568", "price": 211, "title": "Pastilha Freio Dianteira Bmw F30 320i 2013 A 2018", "status": "active"}', '2026-04-16 18:15:25.755624+00'), ('f2ebd40b-ce70-46ab-a2a1-ccdd9ced5af3', NULL, 'stock-locations', '/user-products/MLBU3903352332/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "2409c467-ad65-4f6d-9109-0d34338975b6", "sent": "2026-04-16T18:15:43.12Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:15:43.06Z", "resource": "/user-products/MLBU3903352332/stock", "application_id": 4984880665306039}}', '2026-04-16 18:15:43.530205+00'), ('3352204f-8e7e-4967-95c8-ebea610aff58', NULL, 'stock-locations', '/user-products/MLBU3903332156/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "6f47e27b-be2b-49fe-bbba-9ec3e0c29ed3", "sent": "2026-04-16T18:15:43.825Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:15:43.768Z", "resource": "/user-products/MLBU3903332156/stock", "application_id": 4984880665306039}}', '2026-04-16 18:15:44.165516+00'), ('9f0b67c9-2f61-4d7a-9ade-bf4070371aee', NULL, 'stock-locations', '/user-products/MLBU3892041849/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "16e3402e-c95e-462f-99fe-de81d87c1026", "sent": "2026-04-16T18:15:44.988Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:15:44.876Z", "resource": "/user-products/MLBU3892041849/stock", "application_id": 4984880665306039}}', '2026-04-16 18:15:45.404779+00'), ('3c78ac03-fef3-4bc9-ab0e-bd9ed5b73a25', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607716728', '2503596255', 'MLB6607716728', 'updated', '{"sku": "B31306792211", "price": 153.68, "title": "Bieleta Mini Cooper Clubman F54 Hatch F55 F56 13 A 2019", "status": "active"}', '2026-04-16 18:25:34.032733+00'), ('b583d95e-f571-4edf-985f-8c1913871b1a', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607604644', '2503596255', 'MLB6607604644', 'updated', '{"sku": "b2033202889", "price": 10000, "title": "Bieleta Dianteira Mercedes Clc Cl203 Bmtsr", "status": "active"}', '2026-04-16 18:25:40.147411+00'), ('e2c8cbac-6e86-4ad6-b7dc-4d41532a241c', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612806479', '2503596255', 'MLB4612806479', 'updated', '{"sku": "318292e293", "price": 1999, "title": "Par Amortecedor Dianteiro Bilstein Bmw X2 - 2017-2021", "status": "paused"}', '2026-04-16 18:37:51.32456+00'), ('461b9498-d1be-44fe-8f94-de7024de23a7', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631269098', '2503596255', 'MLB6631269098', 'updated', '{"sku": "LR047630", "price": 1524.38, "title": "Bateria Auxiliar Land Rover Range Rover Sport 20 5.0 V8 Esqu", "status": "paused"}', '2026-04-16 18:49:38.717863+00'), ('ba9f833d-964d-42e9-a047-b1c65894a687', NULL, 'items_prices', '/items/MLB6631233528/prices', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "1b2c2dde-f4d3-4c32-9e32-ac6a9f4fcfc1", "sent": "2026-04-16T18:49:59.343Z", "topic": "items_prices", "actions": [], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:49:59.219Z", "resource": "/items/MLB6631233528/prices", "application_id": 4984880665306039}}', '2026-04-16 18:49:59.817631+00'), ('e30787df-a51e-4e7e-9c33-692c77214f6a', NULL, 'user-products-families', '/sites/MLB/user-products-families/3119599873979730', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "b28e70c9-af2f-4768-94b9-0496b9eea9a8", "sent": "2026-04-16T18:49:59.691Z", "topic": "user-products-families", "actions": ["create"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:49:59.639Z", "resource": "/sites/MLB/user-products-families/3119599873979730", "application_id": 4984880665306039}}', '2026-04-16 18:50:00.114864+00'), ('42db4695-fc91-4874-8d3e-4440563e4472', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631209484', '2503596255', 'MLB6631209484', 'updated', '{"sku": "B12138616153", "price": 339.55, "title": "Bobina Ignição Bmtsr Bmw Série 3 E46 E90 F30 Z3 Z4 X3", "status": "paused"}', '2026-04-16 18:50:07.674719+00'), ('1067a556-b030-499d-b356-1d8e6b968e5b', NULL, 'items_prices', '/items/MLB6631258076/prices', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "1e13d750-b0c6-444f-a98f-6072b4b0d025", "sent": "2026-04-16T18:50:07.76Z", "topic": "items_prices", "actions": [], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:50:07.631Z", "resource": "/items/MLB6631258076/prices", "application_id": 4984880665306039}}', '2026-04-16 18:50:08.112587+00'), ('1ac0f0e2-6b8f-425a-a5c4-d125fe10e6e8', NULL, 'stock-locations', '/user-products/MLBU3900490135/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "bb362bd3-b615-445c-8108-aac6d11a860d", "sent": "2026-04-16T18:50:15.05Z", "topic": "stock-locations", "actions": ["field:status", "action:created"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:50:14.956Z", "resource": "/user-products/MLBU3900490135/stock", "application_id": 4984880665306039}}', '2026-04-16 18:50:15.440838+00'), ('82ac97f4-6380-4ac2-a709-839cba20e7f5', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631258180', '2503596255', 'MLB6631258180', 'updated', '{"sku": null, "price": 1426, "title": "Par Amortecedor Traseiro Bmw 220i Coupe F23 2018", "status": "paused"}', '2026-04-16 18:50:16.125461+00'), ('7a92bc8d-5559-4031-b2d7-4bcaf3602279', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607788510', '2503596255', NULL, 'error', '{"reason": "token_expired"}', '2026-04-16 21:41:50.319679+00'), ('3cf7893e-7f5a-4701-96b4-97033f101f81', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602222523', '2503596255', 'MLB4602222523', 'updated', '{"sku": "2425301", "price": 470.59, "title": "Jogo Pastilha Freio Traseira Textar W204", "status": "active"}', '2026-04-16 17:54:28.195934+00'), ('bda3bfd7-d693-421b-8706-28ee4c080baf', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783417', '2503596255', 'MLB4612783417', 'updated', '{"sku": "B31306863135", "price": 380, "title": "Coxim Amort Diant Bmw 320 Série F30, F31, F35 2011/2015", "status": "paused"}', '2026-04-16 18:14:44.057754+00'), ('e494f6fd-bc64-4f84-9a62-6584121d2024', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989732', '2503596255', 'MLB6630989732', 'updated', '{"sku": "900315", "price": 290, "title": "Coifa E Batente Amortecedor Dianteiro Bmw F30 316i 320i 328i", "status": "paused"}', '2026-04-16 18:14:44.830897+00'), ('d624a409-e8d7-42cd-8bd1-98dc8ae0654b', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612784255', '2503596255', 'MLB4612784255', 'updated', '{"sku": "B12138616153", "price": 339.55, "title": "Bobina Injeção Ignição Bmtsr Bmw 3 5 7 X1 X3 X5 Z4", "status": "paused"}', '2026-04-16 18:14:47.126655+00'), ('f0ae6ebe-d73f-4b28-bda0-332fdbbeefe0', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612807253', '2503596255', 'MLB4612807253', 'updated', '{"sku": "BLR092060", "price": 189, "title": "Sensor Desgaste Pastilha Freio Traseiro Jaguar E-pace Evoque", "status": "paused"}', '2026-04-16 18:14:48.725152+00'), ('43f23c60-aa26-492b-934b-ecd2d21b2f7f', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612795227', '2503596255', 'MLB4612795227', 'updated', '{"sku": "BKR6EGPKIT4", "price": 156.89, "title": "4 Velas Ignição Ngk Platina Sandero 1.6 8v 2011 2012 2013", "status": "paused"}', '2026-04-16 18:14:50.756632+00'), ('983b7aa0-ed57-46a6-a2d8-938b7cf3e197', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612807403', '2503596255', 'MLB4612807403', 'updated', '{"sku": "B17137609469", "price": 728, "title": "Tanque Expansão Arrefecimento Bmtsr Bmw F20 F30 Peça Nova Gt", "status": "paused"}', '2026-04-16 18:15:03.809247+00'), ('e1fb7b66-dd77-4f63-ad99-cee6bb475441', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783259', '2503596255', 'MLB4612783259', 'updated', '{"sku": "B1643200026SP", "price": 790, "title": "Coxim Amortecedor Dianteiro P/ Mercedes Ml320 W164 2011", "status": "paused"}', '2026-04-16 18:15:51.608201+00'), ('b8ceba31-200e-4435-b8b6-7807077704cb', NULL, 'stock-locations', '/user-products/MLBU3891915835/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "40852252-3420-4475-a932-621418eb1687", "sent": "2026-04-16T18:25:40.265Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:25:40.078Z", "resource": "/user-products/MLBU3891915835/stock", "application_id": 4984880665306039}}', '2026-04-16 18:25:40.669486+00'), ('1d5f2a1a-0429-4e45-bdd5-5b8304555521', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989678', '2503596255', 'MLB6630989678', 'updated', '{"sku": "900315", "price": 290, "title": "Kit Batente Amortecedor Dianteiro Bmw 320 2011-2018 Sachs", "status": "paused"}', '2026-04-16 18:38:47.063032+00'), ('061faf95-e75e-49a4-b5e4-026821fc6afc', NULL, 'user-products-families', '/sites/MLB/user-products-families/5257932996764115', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "a08efebc-6251-4ae9-82fe-14ccb666d3ca", "sent": "2026-04-16T18:49:39.473Z", "topic": "user-products-families", "actions": ["create"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:49:38.486Z", "resource": "/sites/MLB/user-products-families/5257932996764115", "application_id": 4984880665306039}}', '2026-04-16 18:49:39.887575+00'), ('3ae3cc21-7d27-404b-9d8e-ac99a5fe07b5', NULL, 'user-products-families', '/sites/MLB/user-products-families/4189727335557839', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "0ea36396-9b30-4d7d-b9fd-c6fad17fe4d9", "sent": "2026-04-16T18:49:59.891Z", "topic": "user-products-families", "actions": ["create"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:49:59.842Z", "resource": "/sites/MLB/user-products-families/4189727335557839", "application_id": 4984880665306039}}', '2026-04-16 18:50:00.249267+00'), ('e43cf12a-a124-4616-a6d5-002e20f088b0', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631269408', '2503596255', 'MLB6631269408', 'updated', '{"sku": "B17137609469", "price": 728, "title": "Reservatório Expansão Bmtsr P/ Bmw F20 F30 F31 F32 Peça Nova", "status": "paused"}', '2026-04-16 18:50:03.813327+00'), ('ca0e8973-e1a5-44c1-b70f-39e017eec298', NULL, 'stock-locations', '/user-products/MLBU3911892196/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "c0461cbf-1044-4730-b5cd-4935faf438de", "sent": "2026-04-16T18:50:07.318Z", "topic": "stock-locations", "actions": ["field:status", "action:created"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:50:07.248Z", "resource": "/user-products/MLBU3911892196/stock", "application_id": 4984880665306039}}', '2026-04-16 18:50:07.695419+00'), ('34a0c5e7-3f3c-4fdb-b13a-0640ad632adb', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631258052', '2503596255', 'MLB6631258052', 'updated', '{"sku": "BLR092060", "price": 180, "title": "Sensor Desgaste Pastilha Freio Traseiro Rover Evoque L551 3m", "status": "paused"}', '2026-04-16 18:50:09.494171+00'), ('453340c9-70f8-4fe6-abc7-8ee63f8c3519', NULL, 'user-products-families', '/sites/MLB/user-products-families/969804470483411', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "ec21ee31-3d63-4673-a593-43f2d514f14b", "sent": "2026-04-16T18:50:11.041Z", "topic": "user-products-families", "actions": ["create"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:50:10.947Z", "resource": "/sites/MLB/user-products-families/969804470483411", "application_id": 4984880665306039}}', '2026-04-16 18:50:11.4012+00'), ('8eb2d9bf-e464-4a28-8316-cc3c7c9cd9ee', NULL, 'items_prices', '/items/MLB6631209558/prices', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "1b2acf16-9c88-43e3-abc0-7e62d9613198", "sent": "2026-04-16T18:50:12.301Z", "topic": "items_prices", "actions": [], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:50:12.182Z", "resource": "/items/MLB6631209558/prices", "application_id": 4984880665306039}}', '2026-04-16 18:50:12.569461+00'), ('956dec59-26cb-4bc2-a3dd-068f6ed6caab', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631209558', '2503596255', 'MLB6631209558', 'inserted', '{"sku": "B2701800500", "price": 820, "title": "Trocador Calor A2701800810 Cla200 2017 2018 Turbo", "status": "paused"}', '2026-04-16 18:50:12.996109+00'), ('0877a2dc-4d23-4c78-8497-e91223eaae5d', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631269074', '2503596255', 'MLB6631269074', 'updated', '{"sku": null, "price": 6800, "title": "Bomba Alta Pressão Mercedes C250 2015 1.8 A2710703701", "status": "paused"}', '2026-04-16 18:50:13.398018+00'), ('9ff61c05-fcbb-4ff5-b3c6-e4d7cac3d617', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631233680', '2503596255', 'MLB6631233680', 'inserted', '{"sku": null, "price": 1344.98, "title": "Par Amortecedor Traseiro Bmw F23 2018", "status": "paused"}', '2026-04-16 18:50:13.801227+00'), ('9fb726d3-cf24-46ad-af2e-0810cea94e60', NULL, 'items_prices', '/items/MLB6631233680/prices', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "716bf654-7363-4196-80b7-89087dc6f722", "sent": "2026-04-16T18:50:13.515Z", "topic": "items_prices", "actions": [], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:50:13.425Z", "resource": "/items/MLB6631233680/prices", "application_id": 4984880665306039}}', '2026-04-16 18:50:14.055317+00'), ('952d13c6-b090-4126-bcdd-4d51ad090e0d', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631258102', '2503596255', 'MLB6631258102', 'updated', '{"sku": null, "price": 1426, "title": "Par Amortecedor Bmw 220i F23 Traseiro 2018", "status": "paused"}', '2026-04-16 18:50:14.872683+00'), ('9132c949-b9f5-47ed-8be9-481e87b746ed', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631233300', '2503596255', 'MLB6631233300', 'updated', '{"sku": "BLR092060", "price": 189, "title": "Sensor Aviso Desgaste Pastilha Jaguar E-pace X540 Traseiro .", "status": "paused"}', '2026-04-16 18:50:15.182834+00'), ('770d30b4-2449-4a17-8414-2291f075ffb7', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602234099', '2503596255', 'MLB4602234099', 'updated', '{"sku": "2425301", "price": 470.59, "title": "Pastilha Freio Textar Mercedes C 2007-14", "status": "active"}', '2026-04-16 17:54:28.387412+00'), ('f4082c67-df26-40f6-821f-7d76ca9273ec', NULL, 'stock-locations', '/user-products/MLBU3892023445/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "53df00de-0532-4edf-a90d-497d742b581c", "sent": "2026-04-16T17:54:28.843Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:54:28.712Z", "resource": "/user-products/MLBU3892023445/stock", "application_id": 4984880665306039}}', '2026-04-16 17:54:29.226184+00'), ('7ce23c4d-ef91-4767-8b75-2c1494c85640', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602078271', '2503596255', 'MLB4602078271', 'updated', '{"sku": "B1643200026SP", "price": 720, "title": " Coxim Amortecedor Dianteiro Mercedes Benz Ml350 W164 09-11", "status": "under_review"}', '2026-04-16 18:14:44.435696+00'), ('1c64a467-8147-41ac-ab76-c4b017ea0ec6', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612806565', '2503596255', 'MLB4612806565', 'updated', '{"sku": null, "price": 1250, "title": "Válvula Termostática C180 C200 C250 Cgi 2013 14 15 16 2017", "status": "paused"}', '2026-04-16 18:14:49.038079+00'), ('fb351645-0842-4136-b778-03e25e79cc49', NULL, 'stock-locations', '/user-products/MLBU3903345586/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "fe275af9-ff0b-4d71-b4db-dc29c44ce343", "sent": "2026-04-16T18:14:57.073Z", "topic": "stock-locations", "actions": ["action:restock", "type:selling_address"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:09:12.504Z", "resource": "/user-products/MLBU3903345586/stock", "application_id": 4984880665306039}}', '2026-04-16 18:14:57.445514+00'); INSERT INTO "public"."ml_webhook_logs" ("id", "user_id", "topic", "resource", "ml_user_id", "listing_id", "action", "details", "created_at") VALUES ('ee079822-69d2-44f5-8757-c688364e311d', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631001086', '2503596255', 'MLB6631001086', 'updated', '{"sku": "B17137609469", "price": 691, "title": "Reservatório Água Motor Bmtsr Bmw F23 2014-2021 Peça Nova Gt", "status": "paused"}', '2026-04-16 18:15:04.268305+00'), ('140b2027-1423-4fc8-a6df-a48166a8fac5', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631000114', '2503596255', 'MLB6631000114', 'updated', '{"sku": "B2701800500", "price": 750, "title": "Suporte Filtro De Óleo Resfriador Mercedes A200 B200 Gla200", "status": "paused"}', '2026-04-16 18:15:51.949846+00'), ('b3d3e7bd-bace-4c4e-953e-5739af6e791f', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612795611', '2503596255', 'MLB4612795611', 'updated', '{"sku": "A2729060060", "price": 648.99, "title": "Bobina Mercedes A2729060060 C280 Cls350 E350 Ml350", "status": "paused"}', '2026-04-16 18:25:50.688309+00'), ('2e61f779-f923-4fb8-bb95-928c9ce2be85', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989678', '2503596255', 'MLB6630989678', 'updated', '{"sku": "900315", "price": 290, "title": "Kit Batente Amortecedor Dianteiro Bmw 320 2011-2018 Sachs", "status": "paused"}', '2026-04-16 18:38:50.204941+00'), ('a3aba73c-0414-4aae-9117-4cfd6f14d26c', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631257770', '2503596255', 'MLB6631257770', 'inserted', '{"sku": null, "price": 2980, "title": "Par Amortecedor Traseiro Mercedes Glc250 Glc300 A2533201330", "status": "paused"}', '2026-04-16 18:49:41.034113+00'), ('0bde0d70-6e93-4dd7-bd82-275513fe9bb3', NULL, 'stock-locations', '/user-products/MLBU3911889826/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "56c60887-a13d-4de3-bc1e-64ad8eb47808", "sent": "2026-04-16T18:49:41.563Z", "topic": "stock-locations", "actions": ["field:status", "action:created"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:49:41.303Z", "resource": "/user-products/MLBU3911889826/stock", "application_id": 4984880665306039}}', '2026-04-16 18:49:41.892507+00'), ('ce3c66fc-1599-46f7-b5c0-3be08bae41a2', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631269138', '2503596255', 'MLB6631269138', 'updated', '{"sku": "B17137609469", "price": 728, "title": "Tanque Expansão Bmtsr Bmw F22 F23 F32 F33 Peça Nova Garantia", "status": "paused"}', '2026-04-16 18:49:42.72831+00'), ('a0f0c752-9306-4152-988e-355dfd9db71a', NULL, 'items_prices', '/items/MLB6631257796/prices', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "861d76eb-1233-452d-b386-a730d55fc7bc", "sent": "2026-04-16T18:49:43.025Z", "topic": "items_prices", "actions": [], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:49:42.913Z", "resource": "/items/MLB6631257796/prices", "application_id": 4984880665306039}}', '2026-04-16 18:49:43.41891+00'), ('9203f922-f7a0-44e1-b542-6e78024a99d9', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631257796', '2503596255', 'MLB6631257796', 'updated', '{"sku": "BLR092060", "price": 180, "title": "Sensor De Desgaste Pastilha Freio Traseiro Jaguar E-pace 17+", "status": "paused"}', '2026-04-16 18:49:43.700127+00'), ('7a0090c2-f394-4709-bb2d-b9d7032b1104', NULL, 'stock-locations', '/user-products/MLBU3900487531/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "2df4113c-7e33-4d2a-8027-bdbceedc834b", "sent": "2026-04-16T18:49:43.438Z", "topic": "stock-locations", "actions": ["field:status", "action:created"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:49:43.3Z", "resource": "/user-products/MLBU3900487531/stock", "application_id": 4984880665306039}}', '2026-04-16 18:49:43.921824+00'), ('b0651a10-360b-4ab6-afd1-e09678807815', NULL, 'items_prices', '/items/MLB6631269408/prices', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "4c011d3e-5c18-4f03-a169-a23f902aed61", "sent": "2026-04-16T18:50:01.84Z", "topic": "items_prices", "actions": [], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:50:01.74Z", "resource": "/items/MLB6631269408/prices", "application_id": 4984880665306039}}', '2026-04-16 18:50:02.242502+00'), ('da8086aa-d9e9-4afb-a4b0-e61275fe3d09', NULL, 'stock-locations', '/user-products/MLBU3900488251/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "99fe56b3-3165-41bc-bdf9-655781556479", "sent": "2026-04-16T18:50:02.38Z", "topic": "stock-locations", "actions": ["field:status", "action:created"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:50:02.256Z", "resource": "/user-products/MLBU3900488251/stock", "application_id": 4984880665306039}}', '2026-04-16 18:50:02.791863+00'), ('c6f88f01-d729-4a5e-9f4c-72a39afe70c4', NULL, 'stock-locations', '/user-products/MLBU3900489953/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "c219e6ac-a1b7-46e3-a410-661031d6c85a", "sent": "2026-04-16T18:50:05.987Z", "topic": "stock-locations", "actions": ["field:status", "action:created"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:50:05.894Z", "resource": "/user-products/MLBU3900489953/stock", "application_id": 4984880665306039}}', '2026-04-16 18:50:06.353032+00'), ('2c47cd7d-8c36-4658-a18e-7eb4ecb6cbf2', NULL, 'user-products-families', '/sites/MLB/user-products-families/3588957984815570', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "aa4a7c2c-cca5-4726-8195-1d9da6534211", "sent": "2026-04-16T18:50:11.038Z", "topic": "user-products-families", "actions": ["create"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:50:10.946Z", "resource": "/sites/MLB/user-products-families/3588957984815570", "application_id": 4984880665306039}}', '2026-04-16 18:50:11.434631+00'), ('8af733e4-b27d-495e-aa26-869f153e3462', NULL, 'user-products-families', '/sites/MLB/user-products-families/1144952342477136', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "4623f36d-73f3-49d3-9117-b8ee29556fb6", "sent": "2026-04-16T18:50:12.607Z", "topic": "user-products-families", "actions": ["create"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:50:12.503Z", "resource": "/sites/MLB/user-products-families/1144952342477136", "application_id": 4984880665306039}}', '2026-04-16 18:50:12.970903+00'), ('acc4198d-6caa-4a3b-8340-16c2aec86364', NULL, 'stock-locations', '/user-products/MLBU3892022271/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "55d8c7ee-3994-471a-944f-f122992e2fd4", "sent": "2026-04-16T17:54:28.031Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:54:27.923Z", "resource": "/user-products/MLBU3892022271/stock", "application_id": 4984880665306039}}', '2026-04-16 17:54:28.404151+00'), ('11fa5584-b272-4115-a458-2bba7eb60630', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607711010', '2503596255', 'MLB6607711010', 'updated', '{"sku": "2425301", "price": 470.59, "title": "Pastilha Freio Textar C200 C220 W204 07-14", "status": "active"}', '2026-04-16 17:54:28.537435+00'), ('4f8b805b-9c11-49bd-9904-4537331555fc', NULL, 'stock-locations', '/user-products/MLBU3892023425/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "cec35741-20b0-4844-ac9f-1003bb2aae51", "sent": "2026-04-16T17:54:28.543Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:54:28.451Z", "resource": "/user-products/MLBU3892023425/stock", "application_id": 4984880665306039}}', '2026-04-16 17:54:29.232496+00'), ('5a8e7794-b63f-429c-bb06-ad19b5fd60d1', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602244331', '2503596255', 'MLB4602244331', 'updated', '{"sku": "2425301", "price": 498.94, "title": "Pastilha Traseira Textar Classe C 2007-2014", "status": "active"}', '2026-04-16 17:54:29.333622+00'), ('8b383ff8-e46d-48fe-a87e-1f6b582e0ce0', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602232345', '2503596255', 'MLB4602232345', 'updated', '{"sku": "2425301", "price": 498.94, "title": "Pastilha Freio Traseira Textar C180 C200 07-14", "status": "active"}', '2026-04-16 17:54:30.603222+00'), ('b62b3eea-07f4-41a3-a7cd-13d32d6af166', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607758108', '2503596255', 'MLB6607758108', 'updated', '{"sku": "B34436882007", "price": 4500, "title": "Módulo Atuador Freio Mão Bmw X5 F15 X6 F16 2013 2014 2015 16", "status": "active"}', '2026-04-16 17:54:41.94674+00'), ('efa558e6-ad68-4828-a4c1-104b3aebb3a5', NULL, 'stock-locations', '/user-products/MLBU3903389116/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "bceeee2e-e2e0-4814-b4e7-80258e3707e4", "sent": "2026-04-16T17:54:41.967Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:54:41.862Z", "resource": "/user-products/MLBU3903389116/stock", "application_id": 4984880665306039}}', '2026-04-16 17:54:42.443251+00'), ('f8413e1a-c728-4d74-9a23-2319a8b1e9ec', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602198311', '2503596255', 'MLB4602198311', 'updated', '{"sku": "2409601", "price": 424.43, "title": "Pastilha Freio Dianteira Bmw Série 3 E90 Textar", "status": "active"}', '2026-04-16 17:55:04.245533+00'), ('941ff892-340d-46fd-8821-c32dec08774b', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607710224', '2503596255', 'MLB6607710224', 'updated', '{"sku": "2409601", "price": 450, "title": "Pastilha Freio Dianteira Bmw Série 3 E90 Textar", "status": "active"}', '2026-04-16 17:55:04.503655+00'), ('f72999de-24c6-4e80-b73a-25580e1fafc7', NULL, 'stock-locations', '/user-products/MLBU3891996665/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "09846ccb-4c45-4f25-a5a4-b73804a614ef", "sent": "2026-04-16T17:55:04.246Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:55:04.109Z", "resource": "/user-products/MLBU3891996665/stock", "application_id": 4984880665306039}}', '2026-04-16 17:55:04.743495+00'), ('4f54fba7-dd8d-4b65-8684-6f928e8ce66e', NULL, 'stock-locations', '/user-products/MLBU3903331990/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "a70a1c2b-14fa-4665-8b69-5de979d1327e", "sent": "2026-04-16T17:55:04.588Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:55:04.452Z", "resource": "/user-products/MLBU3903331990/stock", "application_id": 4984880665306039}}', '2026-04-16 17:55:05.069413+00'), ('a5338205-5772-4aeb-aa06-40afc13bf16c', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607710952', '2503596255', 'MLB6607710952', 'updated', '{"sku": "2409601", "price": 424.43, "title": "Pastilha Freio Dianteira Bmw 318i 320i E90 Textar", "status": "active"}', '2026-04-16 17:55:05.119689+00'), ('9fe847d9-2d1c-4eae-8b25-4eb18935b539', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607677530', '2503596255', 'MLB6607677530', 'updated', '{"sku": "2409601", "price": 450, "title": "Pastilha Freio Bmw 320i E90 2007 2012 Dianteira Textar", "status": "active"}', '2026-04-16 17:55:05.423697+00'), ('49ff6a16-904e-4cd1-8b7e-9f16c426915b', NULL, 'stock-locations', '/user-products/MLBU3903331674/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "5f71d02f-f816-4ff9-b45a-05c1493ea1c1", "sent": "2026-04-16T17:55:05.091Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:55:04.967Z", "resource": "/user-products/MLBU3903331674/stock", "application_id": 4984880665306039}}', '2026-04-16 17:55:05.46835+00'), ('faee5ea0-c72a-4a93-9dcb-d73d509f0fed', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607712580', '2503596255', 'MLB6607712580', 'updated', '{"sku": "2409601", "price": 424.43, "title": "Pastilha Freio Dianteira Bmw 2007 A 2012 E90 318i 320i", "status": "active"}', '2026-04-16 17:55:05.558865+00'), ('4fcae1d2-85ad-434f-a356-c49808e5baaf', NULL, 'stock-locations', '/user-products/MLBU3892001515/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "bf2fcfe7-e2cc-4402-9ccd-a88fa2d98a35", "sent": "2026-04-16T17:55:05.2Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:55:05.104Z", "resource": "/user-products/MLBU3892001515/stock", "application_id": 4984880665306039}}', '2026-04-16 17:55:05.59003+00'), ('ec462bd4-605e-4141-8645-37f898f986a4', NULL, 'stock-locations', '/user-products/MLBU3903332286/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "3ac94c38-b2c9-4d4a-b7ed-7f2f4d3200fa", "sent": "2026-04-16T17:55:05.404Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:55:05.322Z", "resource": "/user-products/MLBU3903332286/stock", "application_id": 4984880665306039}}', '2026-04-16 17:55:05.79308+00'), ('a25d1d0b-a2ce-4208-b646-a22ee623dc92', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602202643', '2503596255', 'MLB4602202643', 'updated', '{"sku": "2409601", "price": 450, "title": "Pastilha Freio Dianteira Bmw 320i E90 Textar", "status": "active"}', '2026-04-16 17:55:06.001154+00'), ('8f1500e6-6162-4db7-84af-992c59f93601', NULL, 'stock-locations', '/user-products/MLBU3903334610/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "824ca2fd-527a-4358-a479-ccda899e8155", "sent": "2026-04-16T17:55:05.91Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:55:05.797Z", "resource": "/user-products/MLBU3903334610/stock", "application_id": 4984880665306039}}', '2026-04-16 17:55:06.321203+00'), ('ce70c22f-fe2a-4bec-b10e-d4b471436da8', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607703198', '2503596255', 'MLB6607703198', 'updated', '{"sku": "2409601", "price": 450, "title": "Pastilha Freio Bmw E90 318i 320i 2007 A 2012 Textar", "status": "active"}', '2026-04-16 17:55:06.819873+00'), ('904b0408-4c7b-47fc-9028-9228cd7b543c', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602212721', '2503596255', 'MLB4602212721', 'updated', '{"sku": "2409601", "price": 450, "title": "Pastilha Freio Dianteira Bmw E90 318i 320i Textar", "status": "active"}', '2026-04-16 17:55:07.701867+00'), ('dd69101a-8496-40a7-8a59-f6e184b75f48', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602292327', '2503596255', NULL, 'error', '{"reason": "token_expired"}', '2026-04-16 21:41:50.455989+00'), ('67af2c9c-548d-4846-956a-422905bba258', NULL, 'stock-locations', '/user-products/MLBU3903338346/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "d08b4821-b103-4ec6-9156-3dde442ebd6e", "sent": "2026-04-16T17:55:06.453Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:55:06.277Z", "resource": "/user-products/MLBU3903338346/stock", "application_id": 4984880665306039}}', '2026-04-16 17:55:06.910951+00'), ('0485fa3b-3040-48b6-b62c-bf6fbb39eb93', NULL, 'stock-locations', '/user-products/MLBU3903341158/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "cc60bc4b-6bde-426d-9510-d865d840e960", "sent": "2026-04-16T17:55:07.212Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:55:07.1Z", "resource": "/user-products/MLBU3903341158/stock", "application_id": 4984880665306039}}', '2026-04-16 17:55:07.572764+00'), ('e9965a70-c0dd-4312-8df7-7d6f824b4b21', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607714036', '2503596255', 'MLB6607714036', 'updated', '{"sku": "2409601", "price": 450, "title": "Pastilha Freio Dianteira Bmw 320i 2007 2012 Textar", "status": "active"}', '2026-04-16 17:55:07.73259+00'), ('8721bd87-9b05-4ee6-bbae-96319746e2a7', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607738122', '2503596255', 'MLB6607738122', 'updated', '{"sku": "B11127552281", "price": 2075, "title": "Tampa De Válvula Bmw X1 X3 Z4 N52 2009 A 2017", "status": "active"}', '2026-04-16 17:55:46.85657+00'), ('8fd96744-5137-4758-8325-46908fbcc9fd', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607699478', '2503596255', 'MLB6607699478', 'updated', '{"sku": "2430601", "price": 235.91, "title": "Pastilha Freio Dianteira Cerâmica Mercedes Classe C", "status": "active"}', '2026-04-16 17:56:26.675262+00'), ('0170f015-c8c4-442f-a510-c89bbcbb4dba', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602245263', '2503596255', 'MLB4602245263', 'updated', '{"sku": "2430601", "price": 250.12, "title": "Pastilha Freio Cerâmica Mercedes Classe C E Slk", "status": "active"}', '2026-04-16 17:56:33.831133+00'), ('809caad7-6fc6-4215-8272-8a2588a0592e', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612806587', '2503596255', 'MLB4612806587', 'updated', '{"sku": "900315", "price": 290, "title": "Kit Batente Amortecedor Dianteiro Bmw X1 F48 2014-2018", "status": "paused"}', '2026-04-16 18:14:44.913496+00'), ('23dcb313-c22a-41c7-b553-b174009b17dc', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612806587', '2503596255', 'MLB4612806587', 'updated', '{"sku": "900315", "price": 290, "title": "Kit Batente Amortecedor Dianteiro Bmw X1 F48 2014-2018", "status": "paused"}', '2026-04-16 18:14:57.291894+00'), ('2826bb88-1a45-47c9-9e30-646dd535b11c', NULL, 'stock-locations', '/user-products/MLBU3903333166/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "9682e1a5-1a4c-4a15-9389-b9fc50465efd", "sent": "2026-04-16T18:14:58.992Z", "topic": "stock-locations", "actions": ["action:restock", "type:selling_address"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:09:10.773Z", "resource": "/user-products/MLBU3903333166/stock", "application_id": 4984880665306039}}', '2026-04-16 18:14:59.458235+00'), ('cadb1a56-ecc6-4f2a-bb53-175521a20098', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989924', '2503596255', 'MLB6630989924', 'updated', '{"sku": "AJ2464701294", "price": 1556.25, "title": " Bomba Combustível Para Mercedes A B Cla Gla 200 A246470129", "status": "paused"}', '2026-04-16 18:15:03.899244+00'), ('179f07e4-3cd3-4a7d-aa9b-33fdaba72cd5', NULL, 'stock-locations', '/user-products/MLBU3892055577/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "f9397427-7d62-412a-a9af-8a06eb9df743", "sent": "2026-04-16T18:15:10.717Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:15:10.635Z", "resource": "/user-products/MLBU3892055577/stock", "application_id": 4984880665306039}}', '2026-04-16 18:15:11.048623+00'), ('7f64d476-7059-41aa-ab22-bd17a434555c', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612807353', '2503596255', 'MLB4612807353', 'updated', '{"sku": "B12138616153", "price": 339.55, "title": "Bobina De Ignição Bmtsr Bmw X1 X2 X3 X4 X5 X6 X7", "status": "paused"}', '2026-04-16 18:15:20.937232+00'), ('7d2aa954-3de8-46e3-9f71-04dedc099953', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612794909', '2503596255', 'MLB4612794909', 'updated', '{"sku": "D3Svisual", "price": 94.5, "title": " Par Lampada Xenon D3s Audi Q3 Q5 Q7 35w 6000k Super Vision", "status": "paused"}', '2026-04-16 18:15:57.077204+00'); INSERT INTO "public"."ml_webhook_logs" ("id", "user_id", "topic", "resource", "ml_user_id", "listing_id", "action", "details", "created_at") VALUES ('49278022-515f-4638-97ad-8bd67fdacc51', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612784147', '2503596255', 'MLB4612784147', 'updated', '{"sku": "BLR161571", "price": 2212, "title": "Bomba D''água Bmtsr Jaguar Land Rover 3 Meses | 3 Meses | 4x4", "status": "paused"}', '2026-04-16 18:26:15.04934+00'), ('1e756b3c-c73b-4124-adf5-c1090cfeae5b', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612820303', '2503596255', 'MLB4612820303', 'updated', '{"sku": "B17137609469", "price": 728, "title": "Reservatório Água Motor Bmtsr Bmw F32 F33 F36 Bmw Compatível", "status": "paused"}', '2026-04-16 18:26:41.743007+00'), ('e81a1a9f-0b2b-45d9-8fb2-926753284a8d', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783259', '2503596255', 'MLB4612783259', 'updated', '{"sku": "B1643200026SP", "price": 790, "title": "Coxim Amortecedor Dianteiro P/ Mercedes Ml320 W164 2011", "status": "paused"}', '2026-04-16 18:39:29.291185+00'), ('89136497-57f4-49b2-ae65-7d76cf9e5d1b', NULL, 'items_prices', '/items/MLB6631257770/prices', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "d4644dc1-a3c8-4df5-8922-53ed8d19090b", "sent": "2026-04-16T18:49:40.705Z", "topic": "items_prices", "actions": [], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:49:40.612Z", "resource": "/items/MLB6631257770/prices", "application_id": 4984880665306039}}', '2026-04-16 18:49:41.139774+00'), ('edec7ec9-1248-42f1-bbda-8f656fcb72aa', NULL, 'stock-locations', '/user-products/MLBU3900485635/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "2c02e623-dd7b-4fdf-8b4f-fe8ce6b283b8", "sent": "2026-04-16T18:49:41.023Z", "topic": "stock-locations", "actions": ["field:status", "action:created"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:49:40.842Z", "resource": "/user-products/MLBU3900485635/stock", "application_id": 4984880665306039}}', '2026-04-16 18:49:41.571879+00'), ('8c650a1b-c231-4a3e-9f94-2f2b03794ae6', NULL, 'items_prices', '/items/MLB6631269138/prices', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "cc49bb9f-378c-4eea-8d83-7f3be79b4d4e", "sent": "2026-04-16T18:49:41.57Z", "topic": "items_prices", "actions": [], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:49:41.507Z", "resource": "/items/MLB6631269138/prices", "application_id": 4984880665306039}}', '2026-04-16 18:49:41.965206+00'), ('77372a4f-d2fa-42ae-802c-309085ad5104', NULL, 'stock-locations', '/user-products/MLBU3911891466/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "fd841175-fa3d-4cfe-b338-5b8eae239ef1", "sent": "2026-04-16T18:49:43.336Z", "topic": "stock-locations", "actions": ["field:status", "action:created"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:49:43.231Z", "resource": "/user-products/MLBU3911891466/stock", "application_id": 4984880665306039}}', '2026-04-16 18:49:43.73684+00'), ('49acaa68-2532-4978-9674-448413fdbefd', NULL, 'stock-locations', '/user-products/MLBU3911891474/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "78b593a5-b413-4f28-bf71-b10894271395", "sent": "2026-04-16T18:49:43.875Z", "topic": "stock-locations", "actions": ["field:status", "action:created"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:49:43.801Z", "resource": "/user-products/MLBU3911891474/stock", "application_id": 4984880665306039}}', '2026-04-16 18:49:44.251934+00'), ('db146dc5-eccb-4b0e-ac2f-4bf6859ff9f7', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607770124', '2503596255', NULL, 'error', '{"reason": "token_expired"}', '2026-04-16 21:41:50.552444+00'), ('aa980611-f377-4dd8-8663-cc826cf4677c', NULL, 'stock-locations', '/user-products/MLBU3903334966/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "e2f86907-5911-4772-82a6-b8fe66ef1762", "sent": "2026-04-16T17:55:07.413Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:55:07.322Z", "resource": "/user-products/MLBU3903334966/stock", "application_id": 4984880665306039}}', '2026-04-16 17:55:07.868653+00'), ('dbcc9820-8dda-47fa-a6d8-bb6926aa359a', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602248791', '2503596255', 'MLB4602248791', 'updated', '{"sku": "B11127552281", "price": 2200, "title": "Tampa Válvula Bmtsr Bmw X1 X3 N52 11127552281 Nova", "status": "active"}', '2026-04-16 17:55:46.504238+00'), ('e0452cca-d6f3-47ed-8873-02336ebb2a87', NULL, 'stock-locations', '/user-products/MLBU3892042043/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "2e7827ef-c2b2-4c04-9fef-fb1b1116e2bb", "sent": "2026-04-16T17:55:46.206Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:55:46.089Z", "resource": "/user-products/MLBU3892042043/stock", "application_id": 4984880665306039}}', '2026-04-16 17:55:46.653897+00'), ('27d3678d-f0fe-4df4-bf7c-b32e8737bdc4', NULL, 'stock-locations', '/user-products/MLBU3892042069/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "2fa5315e-5c18-44b2-a7fc-11b29573e24f", "sent": "2026-04-16T17:55:46.911Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:55:46.788Z", "resource": "/user-products/MLBU3892042069/stock", "application_id": 4984880665306039}}', '2026-04-16 17:55:47.35117+00'), ('65c06602-361d-458f-bf88-387c42a6d65b', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607732290', '2503596255', 'MLB6607732290', 'updated', '{"sku": "B11127552281", "price": 2200, "title": "Tampa Cabeçote Bmw X1 E84 Z4 E89 N52 Bmtsr 4 Cilindros", "status": "active"}', '2026-04-16 17:55:47.694302+00'), ('e2207347-9d2a-4c87-a1fb-f2de2523aad5', NULL, 'stock-locations', '/user-products/MLBU3903372198/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "a4fc2c9e-19d2-4d2e-861d-b564fcdfeb9a", "sent": "2026-04-16T17:55:47.571Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:55:47.45Z", "resource": "/user-products/MLBU3903372198/stock", "application_id": 4984880665306039}}', '2026-04-16 17:55:47.938668+00'), ('b88c1898-aacd-46c9-8024-016e3ab8809a', NULL, 'stock-locations', '/user-products/MLBU3903242330/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "74da7913-a0c2-4067-9bec-799f75c58b74", "sent": "2026-04-16T17:55:48.294Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:55:48.171Z", "resource": "/user-products/MLBU3903242330/stock", "application_id": 4984880665306039}}', '2026-04-16 17:55:48.691602+00'), ('c767eb8c-b4b3-4e25-9566-ddb47298feb5', NULL, 'stock-locations', '/user-products/MLBU3892037701/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "ec5bf90a-1706-4f6e-ad51-963a9215fe61", "sent": "2026-04-16T17:55:48.545Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:55:48.435Z", "resource": "/user-products/MLBU3892037701/stock", "application_id": 4984880665306039}}', '2026-04-16 17:55:49.120277+00'), ('2ecd0560-0835-414f-971a-f9988306b5f2', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607735714', '2503596255', 'MLB6607735714', 'updated', '{"sku": "B11127552281", "price": 2075, "title": "Tampa Cabeçote Bmtsr Bmw E60 E70 E90 11127582245", "status": "active"}', '2026-04-16 17:55:49.50669+00'), ('dfeb077a-6799-47ec-bf1e-919d36f0ce5d', NULL, 'stock-locations', '/user-products/MLBU3892034395/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "2350baa5-8240-4cd0-ac3a-4a11a849c081", "sent": "2026-04-16T17:55:49.224Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:55:49.116Z", "resource": "/user-products/MLBU3892034395/stock", "application_id": 4984880665306039}}', '2026-04-16 17:55:49.668789+00'), ('52e45aa3-6db6-4dbd-8c73-204f59de7d4b', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607748014', '2503596255', 'MLB6607748014', 'updated', '{"sku": "B11127552281", "price": 2075, "title": "Tampa Válvula Bmw 3 5 6 7 Z4 N52 Bmtsr 11127582245", "status": "active"}', '2026-04-16 17:55:50.424126+00'), ('45cc1f86-bfc9-40cb-a3ab-7b3456aa2956', NULL, 'stock-locations', '/user-products/MLBU3903367224/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "2daa8dbe-6230-4813-aaaf-f751be1162b1", "sent": "2026-04-16T17:55:50.622Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:55:50.576Z", "resource": "/user-products/MLBU3903367224/stock", "application_id": 4984880665306039}}', '2026-04-16 17:55:51.07823+00'), ('2e9dc6bd-5307-4e78-af8b-a667749711ff', NULL, 'stock-locations', '/user-products/MLBU3903370908/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "b4f548d4-cbb0-417f-a03e-89487bdef9b8", "sent": "2026-04-16T17:55:51.041Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:55:50.943Z", "resource": "/user-products/MLBU3903370908/stock", "application_id": 4984880665306039}}', '2026-04-16 17:55:51.365296+00'), ('0906fcd1-afbf-43ee-a8b7-82ab12c5b4ec', NULL, 'stock-locations', '/user-products/MLBU3892038941/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "3513d253-bf4e-4f04-b786-f31c416cda77", "sent": "2026-04-16T17:55:50.822Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:55:50.788Z", "resource": "/user-products/MLBU3892038941/stock", "application_id": 4984880665306039}}', '2026-04-16 17:55:51.432872+00'), ('81f8f77c-8726-4401-9e36-5563625de704', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602249803', '2503596255', 'MLB4602249803', 'updated', '{"sku": "B11127552281", "price": 2200, "title": "Tampa Válvula Bmw X1 X3 Z4 N52 11127552281 Bmtsr", "status": "active"}', '2026-04-16 17:55:52.06403+00'), ('c50f0239-49aa-40a6-b93b-f703a1ceb000', NULL, 'stock-locations', '/user-products/MLBU3892038695/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "d91dcc8c-6fac-4aff-abdf-ae4082547a79", "sent": "2026-04-16T17:56:26.271Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:56:26.177Z", "resource": "/user-products/MLBU3892038695/stock", "application_id": 4984880665306039}}', '2026-04-16 17:56:26.731377+00'), ('ff1688ba-2825-42b6-b166-4a28a779375e', NULL, 'stock-locations', '/user-products/MLBU3892028537/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "57b8ee1c-0b30-4e9a-97f2-430f5f611a25", "sent": "2026-04-16T17:56:27.261Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:56:27.174Z", "resource": "/user-products/MLBU3892028537/stock", "application_id": 4984880665306039}}', '2026-04-16 17:56:27.729057+00'), ('2a63fa3d-07a9-4fa9-814d-21e9c08c69f4', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607747924', '2503596255', 'MLB6607747924', 'updated', '{"sku": "2430601", "price": 235.91, "title": "Pastilha De Freio Mercedes Textar A0074209220", "status": "active"}', '2026-04-16 17:56:28.570495+00'), ('24e08159-0b08-4c46-b1c3-b13e03d9d35e', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602270623', '2503596255', NULL, 'error', '{"reason": "token_expired"}', '2026-04-16 21:41:51.218126+00'), ('1ce2fb2d-cf14-4af6-99ba-7530df6d58f5', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607748744', '2503596255', 'MLB6607748744', 'updated', '{"sku": "B11127552281", "price": 2075, "title": "Tampa Cabeçote Bmw X1 E84 Z4 E89 N52 Bmtsr 4 Cilindros", "status": "active"}', '2026-04-16 17:55:47.664549+00'), ('5d527504-9838-43a3-ba4f-7d01c3bc1c64', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602088625', '2503596255', 'MLB4602088625', 'updated', '{"sku": "B11127552281", "price": 2200, "title": "Tampa Válvula Bmw Bmtsr N52 11127552281 11127582245", "status": "active"}', '2026-04-16 17:55:47.954013+00'), ('0231b6b6-e7e5-4a3c-9de3-e152fa487357', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607729184', '2503596255', 'MLB6607729184', 'updated', '{"sku": "B11127552281", "price": 2200, "title": "Tampa Válvula Bmw Bmtsr N52 11127552281 11127582245", "status": "active"}', '2026-04-16 17:55:48.307576+00'), ('f9fe4a4e-d003-4c0c-97a5-e2eef2bd1a1f', NULL, 'stock-locations', '/user-products/MLBU3892034013/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "3ba4ea3c-a62a-451e-8d1d-3a28e0716d26", "sent": "2026-04-16T17:55:47.988Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:55:47.856Z", "resource": "/user-products/MLBU3892034013/stock", "application_id": 4984880665306039}}', '2026-04-16 17:55:48.659505+00'), ('a2f7c11a-ed2b-4448-8dd1-97fac7a46ac9', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602246179', '2503596255', 'MLB4602246179', 'updated', '{"sku": "B11127552281", "price": 2075, "title": "Tampa Válvula Bmtsr Bmw 3 E90 5 E60 N52 11127552281", "status": "active"}', '2026-04-16 17:55:48.730453+00'), ('c1de558d-2591-44f6-b70d-c4f3665944f1', NULL, 'stock-locations', '/user-products/MLBU3892034437/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "630c03c0-8ff7-4780-8e29-10a4baea0693", "sent": "2026-04-16T17:55:49.319Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:55:49.201Z", "resource": "/user-products/MLBU3892034437/stock", "application_id": 4984880665306039}}', '2026-04-16 17:55:49.695887+00'), ('7580af08-12bb-4cf1-a132-9055fcd18601', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607737192', '2503596255', 'MLB6607737192', 'updated', '{"sku": "B11127552281", "price": 2200, "title": "Tampa De Válvula Bmw Z4 X1 X3 11127582245 Bmtsr", "status": "active"}', '2026-04-16 17:55:49.916972+00'), ('19c366d9-ddd2-4d8b-afb2-d30d2de1df14', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607737840', '2503596255', 'MLB6607737840', 'updated', '{"sku": "B11127552281", "price": 2200, "title": "Tampa De Válvula Bmw X1 X3 Z4 N52 2009 A 2017", "status": "active"}', '2026-04-16 17:55:50.915565+00'), ('34629921-2934-4a5f-8b76-1faee237fde9', NULL, 'stock-locations', '/user-products/MLBU3892040155/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "e3e40778-c998-496b-b438-6da14af17e47", "sent": "2026-04-16T17:55:50.823Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:55:50.765Z", "resource": "/user-products/MLBU3892040155/stock", "application_id": 4984880665306039}}', '2026-04-16 17:55:51.238759+00'), ('3b9a74cc-a34b-4968-b5e9-eee8915afa3d', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607749120', '2503596255', 'MLB6607749120', 'updated', '{"sku": "B11127552281", "price": 2200, "title": "Tampa De Válvula Bmw 1 3 5 6 7 Z4 N52 11127552281", "status": "active"}', '2026-04-16 17:55:51.554388+00'), ('e1f9a49d-5e93-4a3e-8779-98277f577816', NULL, 'stock-locations', '/user-products/MLBU3891997279/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "5a45d185-cf99-4bbd-8cb8-46142e2602a8", "sent": "2026-04-16T17:56:26.037Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:56:25.916Z", "resource": "/user-products/MLBU3891997279/stock", "application_id": 4984880665306039}}', '2026-04-16 17:56:26.451893+00'), ('a18f87ce-9d77-4d28-9df5-e67c0f3de1ae', NULL, 'stock-locations', '/user-products/MLBU3892007891/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "bf4bf109-0fef-4d6c-8efb-c0c09c12a7f0", "sent": "2026-04-16T17:56:27.281Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:56:27.181Z", "resource": "/user-products/MLBU3892007891/stock", "application_id": 4984880665306039}}', '2026-04-16 17:56:27.729055+00'), ('cce8995b-1dd1-42f1-a7b9-ce5740df8da1', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612784305', '2503596255', 'MLB4612784305', 'updated', '{"sku": "BLR161571", "price": 2310, "title": "Bomba De Água Bmtsr Jaguar F-type Xe Xf F-pace Garantia | 2l", "status": "paused"}', '2026-04-16 18:14:50.446256+00'), ('164d7dc4-8c72-4933-93bd-0ca08e68f36a', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607710520', '2503596255', 'MLB6607710520', 'updated', '{"sku": "B2649060200", "price": 598.9, "title": "Bobina Ignição Bmtsr Mercedes A2649061200 Premium", "status": "active"}', '2026-04-16 18:14:55.015202+00'), ('67edd463-0911-404a-9d90-f598d44bf53c', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612795381', '2503596255', 'MLB4612795381', 'updated', '{"sku": "B22118743621", "price": 590, "title": "Coxim Direito Motor Bmw X1 F48 2015 2016 2017 2018 2019", "status": "paused"}', '2026-04-16 18:15:12.765555+00'), ('835b464e-87fe-4bce-94ad-4bf058ac5336', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607750000', '2503596255', 'MLB6607750000', 'updated', '{"sku": "B1563232000e1900", "price": 1680, "title": "Par Amortecedor Dianteiro Mercedes Gla 250 2.0 13-19", "status": "active"}', '2026-04-16 18:15:44.732755+00'), ('b3ae1a4c-be93-4ce1-b82a-6df2a3ebf77f', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631000114', '2503596255', 'MLB6631000114', 'updated', '{"sku": "B2701800500", "price": 750, "title": "Suporte Filtro De Óleo Resfriador Mercedes A200 B200 Gla200", "status": "paused"}', '2026-04-16 18:15:52.340927+00'), ('5bca775f-9e36-4e07-938f-19db816a76ba', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612800415', '2503596255', 'MLB4612800415', 'updated', '{"sku": "37206875177", "price": 5499, "title": "Compressor Ar Bmw X5 F15 F85 Xdrive 28i 30d 35i", "status": "paused"}', '2026-04-16 18:26:16.878647+00'), ('30d628d6-db6a-43e3-be2b-92538e383d04', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607750000', '2503596255', 'MLB6607750000', 'updated', '{"sku": "B1563232000e1900", "price": 1680, "title": "Par Amortecedor Dianteiro Mercedes Gla 250 2.0 13-19", "status": "active"}', '2026-04-16 18:42:04.203008+00'), ('c47562af-f676-48b0-abf1-a0a7125204f3', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631209010', '2503596255', 'MLB6631209010', 'updated', '{"sku": null, "price": 620, "title": "Válvula Termostática Mercedes Benz C180 C200 C250 W204 W205", "status": "paused"}', '2026-04-16 18:49:41.341654+00'), ('12aa8b44-7770-4838-8dd0-e344f1d11f58', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631257770', '2503596255', 'MLB6631257770', 'updated', '{"sku": null, "price": 2980, "title": "Par Amortecedor Traseiro Mercedes Glc250 Glc300 A2533201330", "status": "paused"}', '2026-04-16 18:49:42.07121+00'), ('86a1b91c-6e6d-41ec-a439-c0b28901fcb4', NULL, 'items_prices', '/items/MLB6631269098/prices', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "fccdbc20-a565-477b-9266-48bdaf59c5ee", "sent": "2026-04-16T18:49:43.403Z", "topic": "items_prices", "actions": [], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:49:43.351Z", "resource": "/items/MLB6631269098/prices", "application_id": 4984880665306039}}', '2026-04-16 18:49:43.789093+00'); INSERT INTO "public"."ml_webhook_logs" ("id", "user_id", "topic", "resource", "ml_user_id", "listing_id", "action", "details", "created_at") VALUES ('0a67b4fe-b9f3-4ac4-84a2-c33e80e6f784', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631257806', '2503596255', 'MLB6631257806', 'inserted', '{"sku": "B17137609469", "price": 691, "title": "Tanque Expansão Arrefecimento Bmtsr Bmw Série 3 Peça Nova Gt", "status": "paused"}', '2026-04-16 18:49:44.092092+00'), ('23ef58b7-2893-49b5-ba75-943b9cbc861a', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631269590', '2503596255', 'MLB6631269590', 'inserted', '{"sku": "B2701800500", "price": 820, "title": "Troca Calor Mercedes Classe B W246 W242 2017 2018", "status": "paused"}', '2026-04-16 18:50:18.43376+00'), ('45e53776-14bb-413f-aea3-3f727c8bc797', NULL, 'stock-locations', '/user-products/MLBU3903364082/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "1660bb67-1e1d-48ea-9140-ac126d41a058", "sent": "2026-04-16T17:55:48.209Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:55:48.116Z", "resource": "/user-products/MLBU3903364082/stock", "application_id": 4984880665306039}}', '2026-04-16 17:55:48.66629+00'), ('c7b3566c-80d7-45e8-a1f4-a42a690c4a5d', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602236251', '2503596255', 'MLB4602236251', 'updated', '{"sku": "B11127552281", "price": 2075, "title": "Tampa Válvula Bmtsr Bmw N52 X3 E83 Z4 E85 11127582245", "status": "active"}', '2026-04-16 17:55:49.187653+00'), ('451aff99-a4e4-4b53-a869-58a899a8e7d8', NULL, 'price_suggestion', '/marketplace/benchmarks/items/MLB6413191762/details', '1723354900', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "b30bfb4d-ab31-4362-af5d-5f0929acc63f", "sent": "2026-04-16T17:55:49.183Z", "topic": "price_suggestion", "actions": ["price_suggestion"], "user_id": 1723354900, "attempts": 3, "received": "2026-04-16T17:41:56.219Z", "resource": "/marketplace/benchmarks/items/MLB6413191762/details", "application_id": 4984880665306039}}', '2026-04-16 17:55:49.740074+00'), ('3f83edfe-2f35-4eee-9abe-c269db73182d', NULL, 'stock-locations', '/user-products/MLBU3903367582/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "8e52c9e0-dc58-4d92-896a-6385fd6a30ca", "sent": "2026-04-16T17:55:50.024Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:55:49.912Z", "resource": "/user-products/MLBU3903367582/stock", "application_id": 4984880665306039}}', '2026-04-16 17:55:50.366841+00'), ('98c2e5b8-9da5-49ba-a6b8-24dd45e497e1', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607730992', '2503596255', 'MLB6607730992', 'updated', '{"sku": "B11127552281", "price": 2075, "title": "Tampa Válvula Bmw X1 X3 Z4 N52 11127552281 Bmtsr", "status": "active"}', '2026-04-16 17:55:50.887091+00'), ('dd15a597-af09-4705-96db-155c320ece1d', NULL, 'stock-locations', '/user-products/MLBU3892040171/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "c970e3bd-203b-46d2-9ba4-b3c27390df4c", "sent": "2026-04-16T17:55:50.621Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:55:50.556Z", "resource": "/user-products/MLBU3892040171/stock", "application_id": 4984880665306039}}', '2026-04-16 17:55:50.923552+00'), ('7ee27ce7-3535-4c11-860d-b4affe76135e', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607731660', '2503596255', 'MLB6607731660', 'updated', '{"sku": "B11127552281", "price": 2200, "title": "Tampa Válvula Bmw 3 5 6 7 Z4 N52 Bmtsr 11127582245", "status": "active"}', '2026-04-16 17:55:51.172046+00'), ('ba467b27-a8f9-4e8f-a217-6629756b8762', NULL, 'stock-locations', '/user-products/MLBU3892043921/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "3c94b238-75f4-48c3-9ee7-40025f6ed806", "sent": "2026-04-16T17:55:52.109Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:55:51.925Z", "resource": "/user-products/MLBU3892043921/stock", "application_id": 4984880665306039}}', '2026-04-16 17:55:52.569588+00'), ('eab49697-bb97-44b7-9650-0991a63218aa', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607734790', '2503596255', 'MLB6607734790', 'updated', '{"sku": "2430601", "price": 235.91, "title": "Jogo Pastilhas Freio Cerâmica Mercedes Dianteira", "status": "active"}', '2026-04-16 17:56:27.320903+00'), ('a480eec1-f5d3-4c0f-94f2-e96be3ac5642', NULL, 'stock-locations', '/user-products/MLBU3892028497/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "5de6dd1d-0deb-4212-9e85-1f10ff8c6f87", "sent": "2026-04-16T17:56:27.159Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:56:27.033Z", "resource": "/user-products/MLBU3892028497/stock", "application_id": 4984880665306039}}', '2026-04-16 17:56:27.576817+00'), ('ee76222b-5d5b-485c-89cd-ad416f83cc8c', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602223579', '2503596255', 'MLB4602223579', 'updated', '{"sku": "2430601", "price": 235.91, "title": "Pastilha De Freio Dianteira Mercedes Classe C W204", "status": "active"}', '2026-04-16 17:56:28.076406+00'), ('0983f026-54cb-4e28-bdf6-4a9296fc415f', NULL, 'stock-locations', '/user-products/MLBU3892043253/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "c619adfe-9032-4160-9150-760ec57fc9d3", "sent": "2026-04-16T17:56:29.046Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:56:29.017Z", "resource": "/user-products/MLBU3892043253/stock", "application_id": 4984880665306039}}', '2026-04-16 17:56:29.362888+00'), ('06802c38-657d-4737-8250-b5d81e6b5827', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607748842', '2503596255', 'MLB6607748842', 'updated', '{"sku": "2430601", "price": 250.12, "title": "Jogo Pastilha Freio Dianteiro Mercedes C180 C200", "status": "active"}', '2026-04-16 17:56:29.829513+00'), ('451ffdbf-8d9b-4c1d-8d3f-548f5c359a0a', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607737778', '2503596255', 'MLB6607737778', 'updated', '{"sku": "2430601", "price": 235.91, "title": "Pastilha Freio Dianteira Mercedes C180 C200 Cerâmica", "status": "active"}', '2026-04-16 17:56:32.201497+00'), ('822f7415-97f7-4d7e-9b2f-b8eca4b4e1e2', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783685', '2503596255', 'MLB4612783685', 'updated', '{"sku": "BKR6EGPKIT4", "price": 159, "title": " 4 Velas Ignição Ngk Platina Audi A3 1.8 20v Turbo 2001 2002", "status": "paused"}', '2026-04-16 18:14:58.872975+00'), ('51199941-3cf0-4ec0-9e73-942f666b487b', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612820303', '2503596255', 'MLB4612820303', 'updated', '{"sku": "B17137609469", "price": 728, "title": "Reservatório Água Motor Bmtsr Bmw F32 F33 F36 Bmw Compatível", "status": "paused"}', '2026-04-16 18:15:01.57354+00'), ('7fb97662-93b5-421f-b47e-0024c5fad7e3', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783417', '2503596255', 'MLB4612783417', 'updated', '{"sku": "B31306863135", "price": 380, "title": "Coxim Amort Diant Bmw 320 Série F30, F31, F35 2011/2015", "status": "paused"}', '2026-04-16 18:15:03.791179+00'), ('4053b2f9-8690-445e-8b61-a18d9f146b03', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989576', '2503596255', 'MLB6630989576', 'updated', '{"sku": "47324", "price": 650, "title": "Coxim Amort.diant Mercedes Cla180/cla200/a180/a200/gla200", "status": "paused"}', '2026-04-16 18:15:27.637223+00'), ('94d33e44-1770-49c5-9b49-39097452ede2', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607724144', '2503596255', 'MLB6607724144', 'updated', '{"sku": "B1563232000e1900", "price": 1584.55, "title": "Par Amortecedor Dianteiro Mercedes Gla 200 1.6 13-19", "status": "active"}', '2026-04-16 18:15:43.152915+00'), ('02d469db-83c1-46d7-b0f6-486b64c72681', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607700818', '2503596255', 'MLB6607700818', 'updated', '{"sku": "B1563232000e1900", "price": 1584.55, "title": "Par Amortecedor Dianteiro Mercedes Gla 250 Flex 15-19", "status": "active"}', '2026-04-16 18:15:43.806763+00'), ('8b6d9593-11cf-43bb-bcb1-30062bdf7c64', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602244315', '2503596255', 'MLB4602244315', 'updated', '{"sku": "B1563232000e1900", "price": 1584.55, "title": "Par Amortecedor Dianteiro Mercedes Gla 180 Cdi 14-18", "status": "active"}', '2026-04-16 18:15:44.408133+00'), ('c5c124f3-94ab-4c3f-b5d0-72bf334690ec', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612811909', '2503596255', 'MLB4612811909', 'updated', '{"sku": "AJDLR036126", "price": 1399, "title": "Bomba Combustivel Lr036126 Land Rover", "status": "paused"}', '2026-04-16 18:26:17.965811+00'), ('a44826ca-ad5b-4f74-b0a1-fd3d856baa4a', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612824677', '2503596255', 'MLB4612824677', 'updated', '{"sku": "37206875177", "price": 5224.05, "title": "Compressor 37206868998 Bmw X5 X6 F15 F16", "status": "paused"}', '2026-04-16 18:43:20.2425+00'), ('ed8c53ef-32f6-4821-b4c5-e7d5a524cd02', NULL, 'stock-locations', '/user-products/MLBU3892040081/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "89e2d05d-5526-4444-accf-135e5583bf72", "sent": "2026-04-16T17:56:28.067Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:56:27.959Z", "resource": "/user-products/MLBU3892040081/stock", "application_id": 4984880665306039}}', '2026-04-16 17:56:28.388671+00'), ('335d10c4-8846-43cc-afe5-0afcff28d404', NULL, 'items_prices', '/items/MLB4612794919/prices', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "5cdd184c-f44c-4e27-a060-0282ec2f56ad", "sent": "2026-04-16T18:16:16.737Z", "topic": "items_prices", "actions": [], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:12:13.273Z", "resource": "/items/MLB4612794919/prices", "application_id": 4984880665306039}}', '2026-04-16 18:16:17.153088+00'), ('71e8e2cc-be82-4147-9c2f-4cf098f3b504', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631000224', '2503596255', 'MLB6631000224', 'updated', '{"sku": "A2058350147", "price": 158.51, "title": " Filtro Ar Condicionado Mercedes C250 C300 2015 2016 2017 0", "status": "paused"}', '2026-04-16 18:16:18.7387+00'), ('06824760-d405-402e-8226-b94f2ed0bc80', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783259', '2503596255', 'MLB4612783259', 'updated', '{"sku": "B1643200026SP", "price": 790, "title": "Coxim Amortecedor Dianteiro P/ Mercedes Ml320 W164 2011", "status": "paused"}', '2026-04-16 18:16:21.357601+00'), ('49f0d906-3ff3-428d-8ff9-2a12b7412f01', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612794919', '2503596255', 'MLB4612794919', 'updated', '{"sku": "B2701800500", "price": 750, "title": " Trocador Calor Do Motor Mercedes Cla200 Turbo 2017 2018", "status": "paused"}', '2026-04-16 18:16:21.688433+00'), ('9e4d6820-27e6-48dc-87a7-2559b1a7990d', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783425', '2503596255', 'MLB4612783425', 'updated', '{"sku": "47324", "price": 380, "title": "Coxim Amortecedor Mercedes A200 B200 Cla200 2016 2017 2018", "status": "paused"}', '2026-04-16 18:16:22.145347+00'), ('04bbc72e-af93-43c2-b8f3-a25a61ce020f', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989444', '2503596255', 'MLB6630989444', 'updated', '{"sku": "B2701800500", "price": 750, "title": " Suporte Filtro Óleo Mercedes A200 W176 2015 2016", "status": "paused"}', '2026-04-16 18:16:27.174375+00'), ('4f07ed85-69cf-488d-9ba5-c397707d356d', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612806377', '2503596255', 'MLB4612806377', 'updated', '{"sku": "D3Svisual", "price": 94.5, "title": " Par Lampada Xenon D3s Jetta Golf Tiguan Audi A3 A4 Q3 Q7 D", "status": "paused"}', '2026-04-16 18:16:30.195994+00'), ('fe7b57ee-2c76-4a03-aa92-61bec1f6cfea', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602244107', '2503596255', 'MLB4602244107', 'updated', '{"sku": "B31316851747PAR", "price": 1499, "title": "Par Amortecedor Dianteiro Bmw X5 Bmtsr 31316851749", "status": "active"}', '2026-04-16 18:16:45.041374+00'), ('0e08b63e-775e-4d33-8a09-511df5c8f79e', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612806539', '2503596255', 'MLB4612806539', 'updated', '{"sku": "AR2701502900", "price": 260, "title": "Chicote Solenoide Bomba Óleo Mercedes A200 B200 Cla200 Gla", "status": "paused"}', '2026-04-16 18:16:46.708294+00'), ('27d17fdd-d2f5-4e7b-9813-fa212711014d', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783631', '2503596255', 'MLB4612783631', 'updated', '{"sku": "900315", "price": 290, "title": "Kit Batente Amortecedor Dianteiro Bmw X4 G02 Sachs", "status": "paused"}', '2026-04-16 18:16:47.044949+00'), ('d91acecb-740e-452a-9edc-d9bfb85cc202', NULL, 'stock-locations', '/user-products/MLBU3903371786/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "6f30ace3-c36c-4558-a103-92506fe8afb2", "sent": "2026-04-16T18:16:46.833Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:16:46.523Z", "resource": "/user-products/MLBU3903371786/stock", "application_id": 4984880665306039}}', '2026-04-16 18:16:47.178547+00'), ('aae35273-c9c6-432f-9c38-0b0e1afbe0ff', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989444', '2503596255', 'MLB6630989444', 'updated', '{"sku": "B2701800500", "price": 750, "title": " Suporte Filtro Óleo Mercedes A200 W176 2015 2016", "status": "paused"}', '2026-04-16 18:16:47.314707+00'), ('535346a8-367c-4f62-b237-b60d1b64dda3', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612819433', '2503596255', 'MLB4612819433', 'updated', '{"sku": null, "price": 451.78, "title": "Coxim Amortecedor Dianteiro Bmw 320i G20 2019-2020", "status": "paused"}', '2026-04-16 18:16:47.542213+00'), ('84512b38-5702-473a-9690-15374628f695', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612806377', '2503596255', 'MLB4612806377', 'updated', '{"sku": "D3Svisual", "price": 94.5, "title": " Par Lampada Xenon D3s Jetta Golf Tiguan Audi A3 A4 Q3 Q7 D", "status": "paused"}', '2026-04-16 18:16:49.187682+00'), ('34dd8085-bc4d-4210-877c-e1544b8677af', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612806553', '2503596255', 'MLB4612806553', 'updated', '{"sku": "46404", "price": 790, "title": "Válvula Termostática Bmw Febi 528i 2.0 16v N20 11538648791", "status": "paused"}', '2026-04-16 18:16:49.807926+00'), ('d810be0a-29e4-4b62-a4f0-dfd71c8c5d73', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612806565', '2503596255', 'MLB4612806565', 'updated', '{"sku": null, "price": 1250, "title": "Válvula Termostática C180 C200 C250 Cgi 2013 14 15 16 2017", "status": "paused"}', '2026-04-16 18:16:52.605994+00'), ('e762b92b-049d-4cb4-8e89-737a13a999df', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612794959', '2503596255', 'MLB4612794959', 'updated', '{"sku": "ZK818166AB02", "price": 330, "title": "Par Bucha Refil Mancal Bandeja Diant Bmw X2 F39 2020 2021", "status": "paused"}', '2026-04-16 18:16:53.301784+00'), ('0fbb604c-ab77-4a5a-976b-b9ffa3ea9d31', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989732', '2503596255', 'MLB6630989732', 'updated', '{"sku": "900315", "price": 290, "title": "Coifa E Batente Amortecedor Dianteiro Bmw F30 316i 320i 328i", "status": "paused"}', '2026-04-16 18:16:53.955217+00'), ('22f40a26-7cb7-406f-8407-674330e688c1', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612795031', '2503596255', 'MLB4612795031', 'updated', '{"sku": "B31306863135", "price": 380, "title": " Coxim Batente Amortecedor Diant Bmw 116i 118i 120i 125i F2", "status": "paused"}', '2026-04-16 18:16:55.833075+00'), ('53a51603-5b4e-4f87-89f7-0b8703a2d176', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612806587', '2503596255', 'MLB4612806587', 'updated', '{"sku": "900315", "price": 290, "title": "Kit Batente Amortecedor Dianteiro Bmw X1 F48 2014-2018", "status": "paused"}', '2026-04-16 18:17:20.002365+00'), ('7bdfb200-cde0-445e-9116-4c755cac8a6a', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612806733', '2503596255', 'MLB4612806733', 'updated', '{"sku": "A1402770095", "price": 91.28, "title": " Filtro Óleo Câmbio 7226 Mercedes C180 E350 Clk320", "status": "paused"}', '2026-04-16 18:17:20.23152+00'), ('5ee38712-62dc-4def-be2a-c5a10a66fc69', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631000560', '2503596255', 'MLB6631000560', 'updated', '{"sku": null, "price": 999.99, "title": "Chicote E Válvula Óleo Mercedes C300 A200 Kit A2781800415", "status": "paused"}', '2026-04-16 18:17:20.541191+00'), ('2a30086e-da32-47e5-9beb-b3d1df1cc2a3', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612806465', '2503596255', 'MLB4612806465', 'updated', '{"sku": "KITCORRENTECGI", "price": 4338.64, "title": " Kit Corrente Comando Mercedes Benz C180 W204 Cgi 2008/2014", "status": "paused"}', '2026-04-16 18:17:20.947682+00'), ('61828677-f11d-4e01-8ba4-9cbbc531a840', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783931', '2503596255', 'MLB4612783931', 'updated', '{"sku": "B31316851747PAR", "price": 1413.83, "title": "Par Amortecedor Bmtsr Bmw X5 3.0 F15 6851747/6851745", "status": "paused"}', '2026-04-16 18:17:21.613573+00'); INSERT INTO "public"."ml_webhook_logs" ("id", "user_id", "topic", "resource", "ml_user_id", "listing_id", "action", "details", "created_at") VALUES ('236567e6-6b2a-4265-84d9-916770766cbe', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612819847', '2503596255', 'MLB4612819847', 'updated', '{"sku": "B11127570292", "price": 2027.84, "title": "Tampa Cabeçote Bmtsr Bmw N55 F11 535i 11127570292 Nova", "status": "paused"}', '2026-04-16 18:17:22.300354+00'), ('cbd2bc57-136d-44ac-9fad-685469cd9ac0', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612806553', '2503596255', 'MLB4612806553', 'updated', '{"sku": "46404", "price": 790, "title": "Válvula Termostática Bmw Febi 528i 2.0 16v N20 11538648791", "status": "paused"}', '2026-04-16 18:17:23.304294+00'), ('2744425d-22e7-40c6-bd71-c39be8e20997', NULL, 'stock-locations', '/user-products/MLBU3903367378/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "f970c65a-67bb-47dd-aeb2-33b946a8ae42", "sent": "2026-04-16T17:56:28.363Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:56:28.256Z", "resource": "/user-products/MLBU3903367378/stock", "application_id": 4984880665306039}}', '2026-04-16 17:56:28.730227+00'), ('b0404760-70c1-4813-a20e-5c91befbb090', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607747610', '2503596255', 'MLB6607747610', 'updated', '{"sku": "2430601", "price": 235.91, "title": "Pastilha Freio Cerâmica Mercedes Classe C E Slk", "status": "active"}', '2026-04-16 17:56:29.577062+00'), ('c8686467-e183-4def-b103-ab76d6dd53d8', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607749708', '2503596255', 'MLB6607749708', 'updated', '{"sku": "2430601", "price": 250.12, "title": "Pastilha Freio Mercedes Classe C 2007 A 2014", "status": "active"}', '2026-04-16 17:56:34.26622+00'), ('7235f9f6-c71f-475b-8891-c3d9e4111ebd', NULL, 'stock-locations', '/user-products/MLBU3891997755/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "acf6935f-1094-481d-bc0b-b315038c23cd", "sent": "2026-04-16T18:16:17.089Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:10:52.152Z", "resource": "/user-products/MLBU3891997755/stock", "application_id": 4984880665306039}}', '2026-04-16 18:16:17.576924+00'), ('f9bb5963-cbaf-429b-bb6b-8ddea7298063', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989414', '2503596255', 'MLB6630989414', 'updated', '{"sku": "D3Svisual", "price": 94.5, "title": "2 Lampadas De Xenon Original D3s / D3r 6000k - 1-par Novas", "status": "paused"}', '2026-04-16 18:16:18.513674+00'), ('bca7d8ce-fc94-4a40-8fcf-1f0b94814c31', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612819307', '2503596255', 'MLB4612819307', 'updated', '{"sku": "B2702000800GC", "price": 1180, "title": "Bomba Água Mercedes A200 1.6 2014 2015 2016 A2702000801", "status": "paused"}', '2026-04-16 18:16:22.193424+00'), ('545cde65-fe1c-4313-a23d-607e53edf96f', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989400', '2503596255', 'MLB6630989400', 'updated', '{"sku": "B2701800500", "price": 750, "title": " Trocador Calor Do Motor Mercedes A200 Turbo 2014 2015", "status": "paused"}', '2026-04-16 18:16:26.420801+00'), ('8a74456c-4c68-4937-9b89-ca79d8f50061', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612794959', '2503596255', 'MLB4612794959', 'updated', '{"sku": "ZK818166AB02", "price": 330, "title": "Par Bucha Refil Mancal Bandeja Diant Bmw X2 F39 2020 2021", "status": "paused"}', '2026-04-16 18:16:26.975077+00'), ('c35a79ca-5f70-4373-88de-2caaf816d6ff', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631000224', '2503596255', 'MLB6631000224', 'updated', '{"sku": "A2058350147", "price": 158.51, "title": " Filtro Ar Condicionado Mercedes C250 C300 2015 2016 2017 0", "status": "paused"}', '2026-04-16 18:16:27.408573+00'), ('d1cebdd3-b638-4038-ae8e-80c9cc0e5b62', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612819433', '2503596255', 'MLB4612819433', 'updated', '{"sku": null, "price": 451.78, "title": "Coxim Amortecedor Dianteiro Bmw 320i G20 2019-2020", "status": "paused"}', '2026-04-16 18:16:28.295265+00'), ('452f9570-a722-4174-8d67-998d76613009', NULL, 'items_prices', '/items/MLB6630989400/prices', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "6ff3370f-6225-4bb9-8484-58b6262ec429", "sent": "2026-04-16T18:16:38.587Z", "topic": "items_prices", "actions": [], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:12:10.736Z", "resource": "/items/MLB6630989400/prices", "application_id": 4984880665306039}}', '2026-04-16 18:16:38.985965+00'), ('0365b74d-95c4-4662-a4bc-c4286ceb2ea8', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783259', '2503596255', 'MLB4612783259', 'updated', '{"sku": "B1643200026SP", "price": 790, "title": "Coxim Amortecedor Dianteiro P/ Mercedes Ml320 W164 2011", "status": "paused"}', '2026-04-16 18:16:40.986078+00'), ('d1acceb6-ff0b-4854-aec1-404653a7990d', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602249059', '2503596255', 'MLB4602249059', 'updated', '{"sku": "B31316851747PAR", "price": 1499, "title": "Par Amortecedor Bmtsr Frente X5 3.0 31316851747", "status": "active"}', '2026-04-16 18:16:44.349905+00'), ('3189dac8-f48f-4798-96e8-37f619a66c80', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612806527', '2503596255', 'MLB4612806527', 'updated', '{"sku": null, "price": 390, "title": "Lâmpada Xênon Philips D5s 12v 25w Jeep Compass Renegade Audi", "status": "paused"}', '2026-04-16 18:16:46.734691+00'), ('c821c4ba-a216-48d5-9991-de2ddca995b4', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612819307', '2503596255', 'MLB4612819307', 'updated', '{"sku": "B2702000800GC", "price": 1180, "title": "Bomba Água Mercedes A200 1.6 2014 2015 2016 A2702000801", "status": "paused"}', '2026-04-16 18:16:46.810308+00'), ('35c58b9b-ebc2-4320-979a-4c5ac944f8ba', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602248543', '2503596255', 'MLB4602248543', 'updated', '{"sku": "B31316851747PAR", "price": 1413.83, "title": "Par Amortecedor Bmw X5 3.0 Bmtsr 31316851747/745", "status": "active"}', '2026-04-16 18:16:47.336399+00'), ('8886b796-de41-4392-ac0f-563a0b1a9947', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989738', '2503596255', 'MLB6630989738', 'updated', '{"sku": "900315", "price": 290, "title": "Kit Batente Amortecedor Dianteiro Bmw X3 G01 2017-2021", "status": "paused"}', '2026-04-16 18:16:47.461984+00'), ('f73b917d-7adc-410d-b55d-8648c6d06aba', NULL, 'stock-locations', '/user-products/MLBU3892040187/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "70ce266d-2748-4454-ad48-747cf9ce9888", "sent": "2026-04-16T18:16:47.455Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:16:47.334Z", "resource": "/user-products/MLBU3892040187/stock", "application_id": 4984880665306039}}', '2026-04-16 18:16:47.873344+00'), ('9272bf95-4771-4afe-8d1e-68d051473e78', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612806587', '2503596255', 'MLB4612806587', 'updated', '{"sku": "900315", "price": 290, "title": "Kit Batente Amortecedor Dianteiro Bmw X1 F48 2014-2018", "status": "paused"}', '2026-04-16 18:16:49.339317+00'), ('8bbe8713-9702-4139-8605-64cea4a5e86d', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783425', '2503596255', 'MLB4612783425', 'updated', '{"sku": "47324", "price": 380, "title": "Coxim Amortecedor Mercedes A200 B200 Cla200 2016 2017 2018", "status": "paused"}', '2026-04-16 18:16:49.538977+00'), ('9ea5c2d7-768c-4417-b853-82cdf2a88e8a', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612806623', '2503596255', 'MLB4612806623', 'updated', '{"sku": "B2044700894", "price": 1339, "title": "Bomba Combustível Mercedes C180 Cgi 2007 2008 2009 2010 2011", "status": "paused"}', '2026-04-16 18:16:50.305571+00'), ('5fd23515-b862-468c-9b4e-1fae7e188955', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612819617', '2503596255', 'MLB4612819617', 'updated', '{"sku": "15-10027-01", "price": 299, "title": "Junta Tampa Válvulas Bmw 125i 320i X1 X3 X4 328i N20 F26", "status": "paused"}', '2026-04-16 18:16:53.960184+00'), ('90317f97-56f7-48ae-b54f-17e3657a89da', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783359', '2503596255', 'MLB4612783359', 'updated', '{"sku": "TM97103", "price": 1150, "title": " Termostato P/ Mercedes Glc250 X253 2017 2018", "status": "paused"}', '2026-04-16 18:17:04.750725+00'), ('1cde2583-250e-4750-a54b-189c219069ef', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612819675', '2503596255', 'MLB4612819675', 'updated', '{"sku": "B0004203002", "price": 490, "title": "Pastilha Dianteira Mercedes Gla200 2013 Até 2019", "status": "paused"}', '2026-04-16 18:17:19.173938+00'), ('cd1e4027-e2c9-415a-8d6d-68a5f83a977e', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612819675', '2503596255', 'MLB4612819675', 'updated', '{"sku": "B0004203002", "price": 490, "title": "Pastilha Dianteira Mercedes Gla200 2013 Até 2019", "status": "paused"}', '2026-04-16 18:17:19.868654+00'), ('244b23cd-0bac-4a57-8db7-ca62eb90761f', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612819827', '2503596255', 'MLB4612819827', 'updated', '{"sku": "B11127552281", "price": 2075, "title": "Tampa Válvula Bmw N52 Bmtsr Série 3 5 6 11127582245", "status": "paused"}', '2026-04-16 18:17:20.951964+00'), ('c9a78898-c102-4f25-b2b2-bd7c13bf7db4', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602242067', '2503596255', NULL, 'error', '{"reason": "token_expired"}', '2026-04-16 21:41:51.244901+00'), ('31728e6e-1bf9-4a76-9299-8e5c811ae95a', NULL, 'stock-locations', '/user-products/MLBU3892036147/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "8bc29fc9-6a33-43ce-9494-b99c9c7d051f", "sent": "2026-04-16T17:56:29.148Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:56:29.079Z", "resource": "/user-products/MLBU3892036147/stock", "application_id": 4984880665306039}}', '2026-04-16 17:56:29.662731+00'), ('aa3ca065-173d-44df-994d-98d80849dde3', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607739078', '2503596255', 'MLB6607739078', 'updated', '{"sku": "2430601", "price": 250.12, "title": "Pastilha Freio Dianteira Mercedes C180 C200 Cerâmica", "status": "active"}', '2026-04-16 17:56:32.027055+00'), ('ab3f0873-a888-4cd0-baf0-9e3f785747f2', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631000114', '2503596255', 'MLB6631000114', 'updated', '{"sku": "B2701800500", "price": 750, "title": "Suporte Filtro De Óleo Resfriador Mercedes A200 B200 Gla200", "status": "paused"}', '2026-04-16 18:16:18.537348+00'), ('9ce0c004-4f32-4949-93cf-18a1fdbfc77a', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612819407', '2503596255', 'MLB4612819407', 'updated', '{"sku": "A2702000800", "price": 2340, "title": "Bomba Agua Original Mercedes Cla200 2013 A 2018 A2702000800", "status": "paused"}', '2026-04-16 18:16:27.453683+00'), ('a4e3dd73-3b5a-4107-bde3-5e7aafc50def', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607731446', '2503596255', 'MLB6607731446', 'updated', '{"sku": "B31316851747PAR", "price": 1499, "title": "Par Suspensão Dianteira X5 Bmtsr 31316851750/748", "status": "active"}', '2026-04-16 18:16:46.100569+00'), ('00d359d1-8da1-40df-adae-e0693339d0b5', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612794881', '2503596255', 'MLB4612794881', 'updated', '{"sku": "QYP2710501400e1500", "price": 2050, "title": " Par Polias Comando Variavel Mercedes C180 Cgi C200 C250", "status": "paused"}', '2026-04-16 18:16:46.628871+00'), ('8720c403-aa31-45ec-a29a-292c9fac03c4', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612794919', '2503596255', 'MLB4612794919', 'updated', '{"sku": "B2701800500", "price": 750, "title": " Trocador Calor Do Motor Mercedes Cla200 Turbo 2017 2018", "status": "paused"}', '2026-04-16 18:16:46.740542+00'), ('c659bb1c-c6b1-4beb-adaa-feb34c9ea2d0', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612794881', '2503596255', 'MLB4612794881', 'updated', '{"sku": "QYP2710501400e1500", "price": 2050, "title": " Par Polias Comando Variavel Mercedes C180 Cgi C200 C250", "status": "paused"}', '2026-04-16 18:16:47.581668+00'), ('3925880a-5e2c-478a-871d-ab36b9f2001e', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989536', '2503596255', 'MLB6630989536', 'updated', '{"sku": null, "price": 451.78, "title": " Coxim Do Amortecedor Dianteiro Bmw 320i 330i 330e G20 2019", "status": "paused"}', '2026-04-16 18:16:47.845401+00'), ('7b522977-9da9-447b-86d1-e79dcfe39b83', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612819307', '2503596255', 'MLB4612819307', 'updated', '{"sku": "B2702000800GC", "price": 1180, "title": "Bomba Água Mercedes A200 1.6 2014 2015 2016 A2702000801", "status": "paused"}', '2026-04-16 18:16:47.968084+00'), ('a6687381-530e-4f64-acc8-a60df5e38929', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783685', '2503596255', 'MLB4612783685', 'updated', '{"sku": "BKR6EGPKIT4", "price": 159, "title": " 4 Velas Ignição Ngk Platina Audi A3 1.8 20v Turbo 2001 2002", "status": "paused"}', '2026-04-16 18:16:49.446215+00'), ('fa01a986-aa7d-4542-9ac6-9bf9515f011e', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783425', '2503596255', 'MLB4612783425', 'updated', '{"sku": "47324", "price": 380, "title": "Coxim Amortecedor Mercedes A200 B200 Cla200 2016 2017 2018", "status": "paused"}', '2026-04-16 18:16:51.404768+00'), ('b1db9461-5647-49ec-b3f1-90231c584c46', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631000332', '2503596255', 'MLB6631000332', 'updated', '{"sku": "B11377548387", "price": 1350, "title": "Valvetronic Bmw 118 120 320 X1 11377548387 11377509295", "status": "paused"}', '2026-04-16 18:16:52.715711+00'), ('57519c55-f154-463f-96ef-ec2b2ac3e59b', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989536', '2503596255', 'MLB6630989536', 'updated', '{"sku": null, "price": 451.78, "title": " Coxim Do Amortecedor Dianteiro Bmw 320i 330i 330e G20 2019", "status": "paused"}', '2026-04-16 18:16:54.783634+00'), ('62fe4ae1-1084-4a55-855c-a47a4d4356c9', NULL, 'items_prices', '/items/MLB4612783665/prices', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "6cb7c678-8ff4-4d31-a41b-b5767f157a3c", "sent": "2026-04-16T18:16:54.881Z", "topic": "items_prices", "actions": [], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:12:50.726Z", "resource": "/items/MLB4612783665/prices", "application_id": 4984880665306039}}', '2026-04-16 18:16:55.253219+00'), ('85a6548a-a1d7-43eb-b69b-4aee3baeefcd', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612806553', '2503596255', 'MLB4612806553', 'updated', '{"sku": "46404", "price": 790, "title": "Válvula Termostática Bmw Febi 528i 2.0 16v N20 11538648791", "status": "paused"}', '2026-04-16 18:16:55.721932+00'), ('f70d4353-84a7-459b-ab84-11643ee7043c', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612806539', '2503596255', 'MLB4612806539', 'updated', '{"sku": "AR2701502900", "price": 260, "title": "Chicote Solenoide Bomba Óleo Mercedes A200 B200 Cla200 Gla", "status": "paused"}', '2026-04-16 18:17:18.599987+00'), ('649bbc16-6a9d-4037-bc6e-6d3d4db339ce', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989732', '2503596255', 'MLB6630989732', 'updated', '{"sku": "900315", "price": 290, "title": "Coifa E Batente Amortecedor Dianteiro Bmw F30 316i 320i 328i", "status": "paused"}', '2026-04-16 18:17:18.985077+00'), ('a885e393-e51c-4148-b9ce-ce58e24e1ca3', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612795405', '2503596255', 'MLB4612795405', 'updated', '{"sku": "A2043200131", "price": 2550, "title": "Peça De Reposição Para Mercedes-benz Glk - Durabilidade Gara", "status": "active"}', '2026-04-16 18:17:19.585498+00'), ('7f6f797e-00f5-495a-ad55-f081929dfde6', NULL, 'stock-locations', '/user-products/MLBU3911804904/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "ab8a47e9-f5bc-4eb8-a91d-a052cf11c2a0", "sent": "2026-04-16T18:17:19.265Z", "topic": "stock-locations", "actions": ["field:status", "action:created"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:12:12.905Z", "resource": "/user-products/MLBU3911804904/stock", "application_id": 4984880665306039}}', '2026-04-16 18:17:19.728705+00'), ('083df9fa-7cd4-4ca8-abae-0f0f1e12c93b', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612795031', '2503596255', 'MLB4612795031', 'updated', '{"sku": "B31306863135", "price": 380, "title": " Coxim Batente Amortecedor Diant Bmw 116i 118i 120i 125i F2", "status": "paused"}', '2026-04-16 18:17:20.0243+00'); INSERT INTO "public"."ml_webhook_logs" ("id", "user_id", "topic", "resource", "ml_user_id", "listing_id", "action", "details", "created_at") VALUES ('07e650f7-d4eb-41eb-8a79-a5f8f3511f6b', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783359', '2503596255', 'MLB4612783359', 'updated', '{"sku": "TM97103", "price": 1150, "title": " Termostato P/ Mercedes Glc250 X253 2017 2018", "status": "paused"}', '2026-04-16 18:17:20.605413+00'), ('60af8a1a-6742-4439-8a70-11acd8530bdf', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612819827', '2503596255', 'MLB4612819827', 'updated', '{"sku": "B11127552281", "price": 2075, "title": "Tampa Válvula Bmw N52 Bmtsr Série 3 5 6 11127582245", "status": "paused"}', '2026-04-16 18:17:21.333393+00'), ('d657bbda-2163-4577-a58a-70511a9bbb6e', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612795097', '2503596255', 'MLB4612795097', 'updated', '{"sku": "318292e293", "price": 1999, "title": "Par Amortecedor Dianteiro Bmw X1 Xdrive20i F48 2015/2018", "status": "paused"}', '2026-04-16 18:17:21.775055+00'), ('6ba8144b-db7f-484c-8291-11e3cbd700be', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989910', '2503596255', 'MLB6630989910', 'updated', '{"sku": "B31316851747PAR", "price": 1413.83, "title": "Amortecedor Dianteiro Para X5 3.0 24v 2012 À 2018", "status": "paused"}', '2026-04-16 18:17:22.982704+00'), ('fff8d907-5d94-41ca-a0c3-0dbbd6bff386', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989924', '2503596255', 'MLB6630989924', 'updated', '{"sku": "AJ2464701294", "price": 1556.25, "title": " Bomba Combustível Para Mercedes A B Cla Gla 200 A246470129", "status": "paused"}', '2026-04-16 18:17:23.774698+00'), ('1e889f3b-51c7-4ceb-9085-a94ceb54a395', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612807017', '2503596255', 'MLB4612807017', 'updated', '{"sku": "A2729060060", "price": 612.11, "title": "Bobina De Ignição Merc. C-230 C-280 Cls-350 A2729060060", "status": "paused"}', '2026-04-16 18:17:24.55374+00'), ('a0c31c13-96e5-4314-ad51-1b4ee71f06b6', NULL, 'stock-locations', '/user-products/MLBU3892039617/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "c412e8ec-8124-424b-8bed-c67b300eb6d0", "sent": "2026-04-16T17:56:29.275Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:56:29.15Z", "resource": "/user-products/MLBU3892039617/stock", "application_id": 4984880665306039}}', '2026-04-16 17:56:29.723226+00'), ('ed80f8c7-10c8-4a21-8d9c-ef80ec268b89', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602228157', '2503596255', 'MLB4602228157', 'updated', '{"sku": "34106883510", "price": 999.99, "title": "Pastilha Freio Dianteira Bmw X7 G07", "status": "active"}', '2026-04-16 17:56:42.646798+00'), ('21b215a0-99b5-436a-83d1-445c59f0c696', NULL, 'stock-locations', '/user-products/MLBU3892016697/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "09b6f0c3-a5fd-4c57-806d-58e27d4fbd66", "sent": "2026-04-16T17:56:42.332Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:56:42.212Z", "resource": "/user-products/MLBU3892016697/stock", "application_id": 4984880665306039}}', '2026-04-16 17:56:42.718496+00'), ('1cbe3005-1df2-4262-91e0-ef87921b8476', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602231465', '2503596255', 'MLB4602231465', 'updated', '{"sku": "34106883510", "price": 999.99, "title": "Pastilha Freio Dianteira Bmw Série 5 G30", "status": "active"}', '2026-04-16 17:56:43.244068+00'), ('c996f38b-b062-4204-a2a2-8f4aaba93e1b', NULL, 'stock-locations', '/user-products/MLBU3903344736/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "7aea4fc0-d022-4010-8a3b-5f7be9ef4aea", "sent": "2026-04-16T17:56:43.227Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:56:43.149Z", "resource": "/user-products/MLBU3903344736/stock", "application_id": 4984880665306039}}', '2026-04-16 17:56:43.68177+00'), ('39c82154-4022-4188-b666-6f95dee976e0', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602214739', '2503596255', 'MLB4602214739', 'updated', '{"sku": "34106883510", "price": 999.99, "title": "Pastilha Freio Dianteira Bmw X6 G06 F96", "status": "active"}', '2026-04-16 17:56:43.944619+00'), ('880c1b9e-a32d-4541-8d39-a1c0138feda3', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607716920', '2503596255', 'MLB6607716920', 'updated', '{"sku": "34106883510", "price": 949.99, "title": "Pastilha De Freio Dianteira X6 Xdrive 40i - 2020 A 2025", "status": "active"}', '2026-04-16 17:56:44.005097+00'), ('2e5f3ae2-45cb-4497-be2b-56423c38008a', NULL, 'stock-locations', '/user-products/MLBU3892020281/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "9c81423f-a7a5-4bdd-bdbd-7331e96a9d63", "sent": "2026-04-16T17:56:43.427Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:56:43.322Z", "resource": "/user-products/MLBU3892020281/stock", "application_id": 4984880665306039}}', '2026-04-16 17:56:44.006932+00'), ('411b5bb1-9678-47ba-b0f1-9a1171fc6084', NULL, 'stock-locations', '/user-products/MLBU3903340728/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "344392af-d240-448c-9e43-3c0a48b0fcfc", "sent": "2026-04-16T17:56:43.911Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:56:43.844Z", "resource": "/user-products/MLBU3903340728/stock", "application_id": 4984880665306039}}', '2026-04-16 17:56:44.324651+00'), ('0c9c1478-8c81-42f4-93f0-895d87bae5d2', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602212753', '2503596255', 'MLB4602212753', 'updated', '{"sku": "34106883510", "price": 999.99, "title": "Pastilha Freio Dianteira Bmw 34108064560", "status": "active"}', '2026-04-16 17:56:44.624778+00'), ('eadf471e-c293-41d0-a3de-60e37c67b72e', NULL, 'stock-locations', '/user-products/MLBU3903341182/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "5209c942-e58b-44e2-999e-56beb3bca77c", "sent": "2026-04-16T17:56:44.218Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:56:44.125Z", "resource": "/user-products/MLBU3903341182/stock", "application_id": 4984880665306039}}', '2026-04-16 17:56:44.679163+00'), ('7754ae4b-92d3-499c-b673-0bdedde1169c', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602224611', '2503596255', 'MLB4602224611', 'updated', '{"sku": "34106883510", "price": 999.99, "title": "Pastilha Freio Bmw 34116874431", "status": "active"}', '2026-04-16 17:56:44.979171+00'), ('f1ce8d93-9f9c-4f46-8f39-c1ff85fff9fe', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602209711', '2503596255', 'MLB4602209711', 'updated', '{"sku": "34106883510", "price": 999.99, "title": "Pastilha De Freio Dianteira X6 Xdrive 40i - 2020 A 2025", "status": "active"}', '2026-04-16 17:56:44.998359+00'), ('a46ab930-57ab-4a3a-9552-1bc665751eaf', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602227609', '2503596255', 'MLB4602227609', 'updated', '{"sku": "34106883510", "price": 999.99, "title": "Pastilha Freio Dianteira Bmw X5 G05", "status": "active"}', '2026-04-16 17:56:45.490711+00'), ('2a361410-020f-481f-bd2f-b9e6450d4fb1', NULL, 'stock-locations', '/user-products/MLBU3903344440/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "d629883f-9e0e-46e9-99ab-1bd7170db5a2", "sent": "2026-04-16T17:56:45.179Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:56:45.094Z", "resource": "/user-products/MLBU3903344440/stock", "application_id": 4984880665306039}}', '2026-04-16 17:56:45.500457+00'), ('3fb5f7d6-95f6-4685-b1c4-0de147b519e4', NULL, 'stock-locations', '/user-products/MLBU3892016255/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "7197c985-1d0b-4c50-972a-ddc2e1dd62ca", "sent": "2026-04-16T17:56:45.238Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:56:45.155Z", "resource": "/user-products/MLBU3892016255/stock", "application_id": 4984880665306039}}', '2026-04-16 17:56:45.70392+00'), ('63222d6f-4e87-44bd-a025-eebc931a023e', NULL, 'stock-locations', '/user-products/MLBU3892014381/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "e28c2639-553d-4a78-8560-981a7c2f723e", "sent": "2026-04-16T17:56:45.353Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:56:45.258Z", "resource": "/user-products/MLBU3892014381/stock", "application_id": 4984880665306039}}', '2026-04-16 17:56:45.728826+00'), ('166f5f13-7f2c-4d0c-90bf-2c8ea2915ed1', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602237657', '2503596255', 'MLB4602237657', 'updated', '{"sku": "34106883510", "price": 999.99, "title": "Pastilha Freio Dianteira Bmw X3 G01 X4 G02", "status": "active"}', '2026-04-16 17:56:45.780697+00'), ('45ac24f1-2cad-4232-84a6-f28642118264', NULL, 'stock-locations', '/user-products/MLBU3892013289/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "73a29c02-ea47-40bb-99c1-459404f7cd8a", "sent": "2026-04-16T17:56:45.424Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:56:45.298Z", "resource": "/user-products/MLBU3892013289/stock", "application_id": 4984880665306039}}', '2026-04-16 17:56:45.793486+00'), ('4af47dd6-5b18-4f57-bfa7-c7fa784b8447', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607758142', '2503596255', 'MLB6607758142', 'updated', '{"sku": "B1643200130-KIT", "price": 2199, "title": "Par Amortecedor Dianteiro Mercedes Ml320 Ml350 Ml500 06/11", "status": "active"}', '2026-04-16 17:57:38.228661+00'), ('82bfecd5-49a9-4607-8d60-d86aa94c354c', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602288891', '2503596255', NULL, 'error', '{"reason": "token_expired"}', '2026-04-16 21:41:52.20325+00'), ('4a4b1273-5db3-4349-bbaa-e51529be13e9', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602253257', '2503596255', 'MLB4602253257', 'updated', '{"sku": "B1643200130-KIT", "price": 2250, "title": "Par Amortecedor Dianteiro Mercedes Ml320 Ml350 Ml500 06/11", "status": "active"}', '2026-04-16 17:57:42.815698+00'), ('94655f83-ed89-48b0-bf1a-2bd3102e34fd', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607758924', '2503596255', 'MLB6607758924', 'updated', '{"sku": "2xB1643200026SP+1xB1643200130-KIT", "price": 3830, "title": "Par Amortecedor Dianteiro E 2 Kit Coxim Amortecedor E Coifa", "status": "active"}', '2026-04-16 17:57:44.927169+00'), ('f76febff-9064-4aa5-9435-c026e16eab88', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602219141', '2503596255', 'MLB4602219141', 'updated', '{"sku": "2425301", "price": 498.94, "title": "Jogo Pastilha Freio Traseira Textar W204", "status": "active"}', '2026-04-16 17:58:26.159772+00'), ('ea280fb3-9545-4039-8999-a02332ad1524', NULL, 'stock-locations', '/user-products/MLBU3903389150/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "02440b68-f54f-4396-a033-36f8b29b311f", "sent": "2026-04-16T17:58:26.63Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T17:53:03.711Z", "resource": "/user-products/MLBU3903389150/stock", "application_id": 4984880665306039}}', '2026-04-16 17:58:27.091901+00'), ('1c430d3d-6a46-496d-84be-2a590a2c742a', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607710082', '2503596255', 'MLB6607710082', 'updated', '{"sku": "2425301", "price": 470.59, "title": "Pastilha Freio Traseira Textar C180 C200 07-14", "status": "active"}', '2026-04-16 17:58:29.589612+00'), ('271345c7-de5f-4a04-9ea8-3cd8065b18af', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6589171256', '2503596255', 'MLB6589171256', 'updated', '{"sku": "34206888825", "price": 630, "title": "Pastilha De Freio Traseira Bmw 220i 230i G42 2022 2023", "status": "active"}', '2026-04-16 17:58:34.873412+00'), ('fc0a1481-7608-4b2b-8d04-f3c3489b84ff', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607700928', '2503596255', 'MLB6607700928', 'updated', '{"sku": "2425301", "price": 498.94, "title": "Pastilha De Freio Traseiro Mercedes C180 C200 C220 2007 / 14", "status": "active"}', '2026-04-16 17:58:35.078599+00'), ('9950db12-c287-481c-949e-fe94aff53bac', NULL, 'stock-locations', '/user-products/MLBU3894333016/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "74b99bda-dc4d-4a23-9eb4-3408bffcdb2a", "sent": "2026-04-16T17:58:35.17Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T17:58:35.063Z", "resource": "/user-products/MLBU3894333016/stock", "application_id": 4984880665306039}}', '2026-04-16 17:58:35.535733+00'), ('15820b0d-e3d0-4e25-b27c-6df0c3975003', NULL, 'stock-locations', '/user-products/MLBU3892047907/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "636c4341-f80e-4381-bf9b-fc8805777c8e", "sent": "2026-04-16T17:58:36.531Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T17:53:04.31Z", "resource": "/user-products/MLBU3892047907/stock", "application_id": 4984880665306039}}', '2026-04-16 17:58:36.983334+00'), ('a1f4bc82-b6cd-46e9-90ae-ea8e627dd8f2', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602219683', '2503596255', 'MLB4602219683', 'updated', '{"sku": "2425301", "price": 470.59, "title": "Pastilha Traseira Textar C180 C200 C220", "status": "active"}', '2026-04-16 17:58:37.144424+00'), ('73c95a12-d7de-4351-9dfb-517a90a3f2e9', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602222523', '2503596255', 'MLB4602222523', 'updated', '{"sku": "2425301", "price": 470.59, "title": "Jogo Pastilha Freio Traseira Textar W204", "status": "active"}', '2026-04-16 17:58:39.681161+00'), ('4ab7581d-a1e4-4ea2-bfc2-7cadb02d7dd8', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602240251', '2503596255', 'MLB4602240251', 'updated', '{"sku": "2425301", "price": 498.94, "title": "Pastilha Traseira Textar Mercedes C180 2007-14", "status": "active"}', '2026-04-16 17:58:39.707141+00'), ('a80620ba-982f-45a6-a610-397a7c34654f', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602221821', '2503596255', 'MLB4602221821', 'updated', '{"sku": "2425301", "price": 498.94, "title": "Pastilha Freio Traseira Textar C180 C200", "status": "active"}', '2026-04-16 17:58:41.295999+00'), ('55d7252e-d0e8-47e1-8009-bcda198d5a2e', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607724844', '2503596255', 'MLB6607724844', 'updated', '{"sku": "2425301", "price": 470.59, "title": "Pastilha Traseira Textar Classe C W204", "status": "active"}', '2026-04-16 17:58:47.105452+00'), ('76c7121e-11db-478e-83ce-aff030ed6204', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607758108', '2503596255', 'MLB6607758108', 'updated', '{"sku": "B34436882007", "price": 4500, "title": "Módulo Atuador Freio Mão Bmw X5 F15 X6 F16 2013 2014 2015 16", "status": "active"}', '2026-04-16 17:58:55.198779+00'), ('54d31969-7d7b-496a-8327-f784e68752d3', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607711010', '2503596255', 'MLB6607711010', 'updated', '{"sku": "2425301", "price": 470.59, "title": "Pastilha Freio Textar C200 C220 W204 07-14", "status": "active"}', '2026-04-16 17:58:57.332055+00'), ('f3553746-ab35-4941-9778-93e87276c0af', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607700956', '2503596255', 'MLB6607700956', 'updated', '{"sku": "2425301", "price": 498.94, "title": "Pastilha Traseira Textar Classe C W204", "status": "active"}', '2026-04-16 17:59:03.147649+00'), ('52b93d35-f339-4810-a96a-b51f19af6e95', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602232345', '2503596255', 'MLB4602232345', 'updated', '{"sku": "2425301", "price": 498.94, "title": "Pastilha Freio Traseira Textar C180 C200 07-14", "status": "active"}', '2026-04-16 17:59:04.522659+00'), ('8a723999-531e-4597-8687-b65c201a929e', NULL, 'price_suggestion', '/marketplace/benchmarks/items/MLB5925948756/details', '1723354900', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "1d529af8-efb0-4a8c-9909-97aea80e5023", "sent": "2026-04-16T17:59:04.956Z", "topic": "price_suggestion", "actions": ["price_suggestion"], "user_id": 1723354900, "attempts": 5, "received": "2026-04-16T17:31:19.962Z", "resource": "/marketplace/benchmarks/items/MLB5925948756/details", "application_id": 4984880665306039}}', '2026-04-16 17:59:05.340604+00'), ('54e920d3-9d85-49b5-bb75-6bbb671cdf27', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607675718', '2503596255', 'MLB6607675718', 'updated', '{"sku": "2425301", "price": 498.94, "title": "Pastilha Freio Textar C200 C220 W204 07-14", "status": "active"}', '2026-04-16 17:59:06.362448+00'), ('237ca498-1435-4be3-9a56-9aaf6ec9d2f1', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602198311', '2503596255', 'MLB4602198311', 'updated', '{"sku": "2409601", "price": 424.43, "title": "Pastilha Freio Dianteira Bmw Série 3 E90 Textar", "status": "active"}', '2026-04-16 17:59:07.062757+00'), ('3c8abbc3-696e-4648-94a7-f38c1b04f693', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602244331', '2503596255', 'MLB4602244331', 'updated', '{"sku": "2425301", "price": 498.94, "title": "Pastilha Traseira Textar Classe C 2007-2014", "status": "active"}', '2026-04-16 17:59:07.31849+00'), ('2ff4e663-b5a9-4052-b193-dc163f1a4f00', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607710952', '2503596255', 'MLB6607710952', 'updated', '{"sku": "2409601", "price": 424.43, "title": "Pastilha Freio Dianteira Bmw 318i 320i E90 Textar", "status": "active"}', '2026-04-16 17:59:09.262925+00'); INSERT INTO "public"."ml_webhook_logs" ("id", "user_id", "topic", "resource", "ml_user_id", "listing_id", "action", "details", "created_at") VALUES ('0ad86bf1-f99a-45bb-81cd-66d83824b3a6', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602202643', '2503596255', 'MLB4602202643', 'updated', '{"sku": "2409601", "price": 450, "title": "Pastilha Freio Dianteira Bmw 320i E90 Textar", "status": "active"}', '2026-04-16 17:59:09.490727+00'), ('3096085b-d5ab-4869-a646-2ef69fe384df', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607699176', '2503596255', 'MLB6607699176', 'updated', '{"sku": "2425301", "price": 498.94, "title": "Pastilha Freio Textar Mercedes C 2007-14", "status": "active"}', '2026-04-16 17:59:09.52527+00'), ('f57ff984-3b2c-4fae-80dd-7a12611cd4bc', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607710224', '2503596255', 'MLB6607710224', 'updated', '{"sku": "2409601", "price": 450, "title": "Pastilha Freio Dianteira Bmw Série 3 E90 Textar", "status": "active"}', '2026-04-16 17:59:09.575998+00'), ('05da0baa-f628-4d15-92ed-f86ef253dbf5', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602234099', '2503596255', 'MLB4602234099', 'updated', '{"sku": "2425301", "price": 470.59, "title": "Pastilha Freio Textar Mercedes C 2007-14", "status": "active"}', '2026-04-16 17:59:11.237229+00'), ('b2cb54bb-8e00-4054-ae92-c5a772509233', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602212721', '2503596255', 'MLB4602212721', 'updated', '{"sku": "2409601", "price": 450, "title": "Pastilha Freio Dianteira Bmw E90 318i 320i Textar", "status": "active"}', '2026-04-16 17:59:14.261321+00'), ('e81ee40a-5dd0-40cf-8e82-8227d8506f82', NULL, 'stock-locations', '/user-products/MLBU3903327356/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "69695678-1371-429d-8a29-9018c25ba277", "sent": "2026-04-16T17:59:29.592Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T17:54:23.427Z", "resource": "/user-products/MLBU3903327356/stock", "application_id": 4984880665306039}}', '2026-04-16 17:59:29.973659+00'), ('2cd56e6f-8397-427c-99d0-d58b4e1e97a1', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607748842', '2503596255', 'MLB6607748842', 'updated', '{"sku": "2430601", "price": 250.12, "title": "Jogo Pastilha Freio Dianteiro Mercedes C180 C200", "status": "active"}', '2026-04-16 18:00:33.564376+00'), ('3717f39b-624c-4ba8-b1f8-0d4b3a9c5036', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602238873', '2503596255', 'MLB4602238873', 'updated', '{"sku": "B34216850569", "price": 420, "title": "Jogo Pastilha Freio Traseira Bmw 34206799809", "status": "active"}', '2026-04-16 18:00:37.265672+00'), ('8eea8019-c4a9-49e5-8103-c02005994341', NULL, 'items_prices', '/items/MLB4612819307/prices', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "6b395dec-0d2c-43eb-a210-2110b2fce566", "sent": "2026-04-16T18:16:18.137Z", "topic": "items_prices", "actions": [], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:12:07.487Z", "resource": "/items/MLB4612819307/prices", "application_id": 4984880665306039}}', '2026-04-16 18:16:18.759103+00'), ('4cc899a5-cac3-447f-9449-74218a6f69cd', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612806377', '2503596255', 'MLB4612806377', 'updated', '{"sku": "D3Svisual", "price": 94.5, "title": " Par Lampada Xenon D3s Jetta Golf Tiguan Audi A3 A4 Q3 Q7 D", "status": "paused"}', '2026-04-16 18:16:21.381344+00'), ('9a791dad-5dc3-4700-b6c8-2337480cf4ee', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612794881', '2503596255', 'MLB4612794881', 'updated', '{"sku": "QYP2710501400e1500", "price": 2050, "title": " Par Polias Comando Variavel Mercedes C180 Cgi C200 C250", "status": "paused"}', '2026-04-16 18:16:21.710026+00'), ('ae90df08-b612-451b-b62d-8bbed82a08ca', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612794909', '2503596255', 'MLB4612794909', 'updated', '{"sku": "D3Svisual", "price": 94.5, "title": " Par Lampada Xenon D3s Audi Q3 Q5 Q7 35w 6000k Super Vision", "status": "paused"}', '2026-04-16 18:16:22.443727+00'), ('67b8cf2d-23da-4e14-895c-560cb1303acc', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631000134', '2503596255', 'MLB6631000134', 'updated', '{"sku": "D3Svisual", "price": 94.5, "title": " Par Lâmpada Xenon D3s Volvo Xc60 T5 2015 2016 2017 6000k", "status": "paused"}', '2026-04-16 18:16:26.21029+00'), ('98a88ad6-948e-4934-afc3-595d9569a86b', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612794919', '2503596255', 'MLB4612794919', 'updated', '{"sku": "B2701800500", "price": 750, "title": " Trocador Calor Do Motor Mercedes Cla200 Turbo 2017 2018", "status": "paused"}', '2026-04-16 18:16:28.119011+00'), ('052eab7c-97f3-4590-bd1c-d7ccfc2401da', NULL, 'stock-locations', '/user-products/MLBU3903372028/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "1f7cda33-ffa7-4a59-9f9e-39f1a7994b28", "sent": "2026-04-16T18:16:44.545Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:16:44.425Z", "resource": "/user-products/MLBU3903372028/stock", "application_id": 4984880665306039}}', '2026-04-16 18:16:45.005252+00'), ('64b9d035-1c0d-434c-a3dd-181f2647c34a', NULL, 'stock-locations', '/user-products/MLBU3892037783/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "6c2ff8ad-01c8-4e03-8c68-6d78fbfa80f2", "sent": "2026-04-16T18:16:45.461Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:16:45.374Z", "resource": "/user-products/MLBU3892037783/stock", "application_id": 4984880665306039}}', '2026-04-16 18:16:45.764252+00'), ('fef0b17a-40b9-415d-8691-5099ca0447a1', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783787', '2503596255', 'MLB4612783787', 'updated', '{"sku": "900126", "price": 250, "title": "Kit Batente Amortecedor Traseiro Bmw X1 E84 2009-2012", "status": "paused"}', '2026-04-16 18:16:47.673085+00'), ('e14b7031-07ca-4bb0-8e33-8a04a0e77b29', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612819407', '2503596255', 'MLB4612819407', 'updated', '{"sku": "A2702000800", "price": 2340, "title": "Bomba Agua Original Mercedes Cla200 2013 A 2018 A2702000800", "status": "paused"}', '2026-04-16 18:16:48.131221+00'), ('57655417-aa0c-48d9-a141-b826d05e9c0a', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783665', '2503596255', 'MLB4612783665', 'updated', '{"sku": "B2044700894", "price": 1339, "title": "Bomba Combustível Mercedes E250 Cgi 1.8 W212 2010", "status": "paused"}', '2026-04-16 18:16:49.281671+00'), ('714526a4-73b3-4ef3-b917-c7af5572eb84', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631000560', '2503596255', 'MLB6631000560', 'updated', '{"sku": null, "price": 999.99, "title": "Chicote E Válvula Óleo Mercedes C300 A200 Kit A2781800415", "status": "paused"}', '2026-04-16 18:16:50.292003+00'), ('a67fda4c-d62c-4e5d-947b-61980455823a', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783549', '2503596255', 'MLB4612783549', 'updated', '{"sku": "46404", "price": 790, "title": "Valvula Termostatica Bmw 320 328 X1 X3 X4 Febi11538635689", "status": "paused"}', '2026-04-16 18:16:50.547395+00'), ('17adcb6c-23d1-4706-8b90-c788600598ed', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783417', '2503596255', 'MLB4612783417', 'updated', '{"sku": "B31306863135", "price": 380, "title": "Coxim Amort Diant Bmw 320 Série F30, F31, F35 2011/2015", "status": "paused"}', '2026-04-16 18:16:50.779576+00'), ('657cd086-9cc2-4dc1-804b-d1c1d25da959', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612806623', '2503596255', 'MLB4612806623', 'updated', '{"sku": "B2044700894", "price": 1339, "title": "Bomba Combustível Mercedes C180 Cgi 2007 2008 2009 2010 2011", "status": "paused"}', '2026-04-16 18:16:52.113683+00'), ('4a2df21f-6425-42d6-9747-b2f8d3a8e3e7', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783627', '2503596255', 'MLB4612783627', 'updated', '{"sku": "B0004706394", "price": 640, "title": "Bomba Gasolina Mercedes C180 C200 C230 C280 Clk320 Clk230", "status": "paused"}', '2026-04-16 18:16:52.400776+00'), ('02ade69a-87bf-42be-9ba4-e5dd80ce7b41', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783631', '2503596255', 'MLB4612783631', 'updated', '{"sku": "900315", "price": 290, "title": "Kit Batente Amortecedor Dianteiro Bmw X4 G02 Sachs", "status": "paused"}', '2026-04-16 18:16:53.743383+00'), ('1c23003c-4ed1-4d92-82a8-111020707b6f', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612806587', '2503596255', 'MLB4612806587', 'updated', '{"sku": "900315", "price": 290, "title": "Kit Batente Amortecedor Dianteiro Bmw X1 F48 2014-2018", "status": "paused"}', '2026-04-16 18:16:55.879821+00'), ('40805d5b-cf62-4b10-86f3-8e0e2777e928', NULL, 'items_prices', '/items/MLB4612819497/prices', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "e4ae8242-63b6-49aa-b917-7d2d648e0b96", "sent": "2026-04-16T18:17:07.939Z", "topic": "items_prices", "actions": [], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:12:40.418Z", "resource": "/items/MLB4612819497/prices", "application_id": 4984880665306039}}', '2026-04-16 18:17:08.292789+00'), ('ca3ce1ca-e56d-4107-8053-4dae2fae9c88', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612806733', '2503596255', 'MLB4612806733', 'updated', '{"sku": "A1402770095", "price": 91.28, "title": " Filtro Óleo Câmbio 7226 Mercedes C180 E350 Clk320", "status": "paused"}', '2026-04-16 18:17:18.588513+00'), ('3a56741f-75f6-42a1-a138-846e4d23a1a6', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612806539', '2503596255', 'MLB4612806539', 'updated', '{"sku": "AR2701502900", "price": 260, "title": "Chicote Solenoide Bomba Óleo Mercedes A200 B200 Cla200 Gla", "status": "paused"}', '2026-04-16 18:17:18.68534+00'), ('2195e76c-fc92-4e93-a9e4-ca26037ada29', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602206049', '2503596255', NULL, 'error', '{"reason": "token_expired"}', '2026-04-16 21:41:52.420588+00'), ('29646c6d-42ba-4664-875f-753c6635765a', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607712580', '2503596255', 'MLB6607712580', 'updated', '{"sku": "2409601", "price": 424.43, "title": "Pastilha Freio Dianteira Bmw 2007 A 2012 E90 318i 320i", "status": "active"}', '2026-04-16 17:59:28.147758+00'), ('33957ac4-ff74-4a8e-8bfa-6c0a431051d9', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607730992', '2503596255', 'MLB6607730992', 'updated', '{"sku": "B11127552281", "price": 2075, "title": "Tampa Válvula Bmw X1 X3 Z4 N52 11127552281 Bmtsr", "status": "active"}', '2026-04-16 18:00:11.143141+00'), ('1ab6f9df-4ce9-47a3-83c3-0c893e4430f2', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612806467', '2503596255', 'MLB4612806467', 'updated', '{"sku": "KITCORRENTECGI", "price": 4338.64, "title": " Kit Completo Polias Comando Mercedes C180 Cgi C200 C250", "status": "paused"}', '2026-04-16 18:16:19.390933+00'), ('c5273a53-d79d-458b-87bd-9e6fe4d1b315', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612795031', '2503596255', 'MLB4612795031', 'updated', '{"sku": "B31306863135", "price": 380, "title": " Coxim Batente Amortecedor Diant Bmw 116i 118i 120i 125i F2", "status": "paused"}', '2026-04-16 18:16:22.048683+00'), ('3670b6a0-9798-4819-8aa2-62131b97ef02', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989596', '2503596255', 'MLB6630989596', 'updated', '{"sku": null, "price": 1390, "title": "Válvula Termostática Mercedes C180 C200 C250 W205 2015 2016", "status": "paused"}', '2026-04-16 18:16:23.82742+00'), ('edae81b1-6f41-40b5-a7d8-f9fcea221e86', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989400', '2503596255', 'MLB6630989400', 'updated', '{"sku": "B2701800500", "price": 750, "title": " Trocador Calor Do Motor Mercedes A200 Turbo 2014 2015", "status": "paused"}', '2026-04-16 18:16:26.065642+00'), ('7dd43d16-0b57-4ee5-950e-c03f2832c5f1', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989400', '2503596255', 'MLB6630989400', 'updated', '{"sku": "B2701800500", "price": 750, "title": " Trocador Calor Do Motor Mercedes A200 Turbo 2014 2015", "status": "paused"}', '2026-04-16 18:16:26.560898+00'), ('7b9d31fa-470f-4dcc-bd1f-9eec4cae38fd', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612794959', '2503596255', 'MLB4612794959', 'updated', '{"sku": "ZK818166AB02", "price": 330, "title": "Par Bucha Refil Mancal Bandeja Diant Bmw X2 F39 2020 2021", "status": "paused"}', '2026-04-16 18:16:27.051319+00'), ('b8e21ebd-a7b1-4e20-bbc7-62d1d7ea40ee', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783355', '2503596255', 'MLB4612783355', 'updated', '{"sku": "TM97103", "price": 1050, "title": " Carcaça Válvula Termostato P/ Mercedes C180 C205 2015", "status": "paused"}', '2026-04-16 18:16:28.653407+00'), ('f2c02fd9-d322-4b63-89c0-e363cfd0d2d7', NULL, 'items_prices', '/items/MLB6631000134/prices', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "343adf21-333c-45c8-996b-4a42185d9fd0", "sent": "2026-04-16T18:16:39.759Z", "topic": "items_prices", "actions": [], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:12:13.565Z", "resource": "/items/MLB6631000134/prices", "application_id": 4984880665306039}}', '2026-04-16 18:16:40.185552+00'), ('b3e76348-1a93-471d-9d78-c0001853465e', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612795097', '2503596255', 'MLB4612795097', 'updated', '{"sku": "318292e293", "price": 1999, "title": "Par Amortecedor Dianteiro Bmw X1 Xdrive20i F48 2015/2018", "status": "paused"}', '2026-04-16 18:16:46.837123+00'), ('e21ef52e-aa27-43e0-8671-3d891452f6a5', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602248573', '2503596255', 'MLB4602248573', 'updated', '{"sku": "B31316851747PAR", "price": 1413.83, "title": "Amortecedor Dianteiro Bmtsr X5 Par 31316851745/750", "status": "active"}', '2026-04-16 18:16:46.986357+00'), ('070ba0f2-0984-4577-a991-917ea0bdf084', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612806527', '2503596255', 'MLB4612806527', 'updated', '{"sku": null, "price": 390, "title": "Lâmpada Xênon Philips D5s 12v 25w Jeep Compass Renegade Audi", "status": "paused"}', '2026-04-16 18:16:47.228603+00'), ('0afe09c4-cb8b-4e1f-9459-9e99349dc230', NULL, 'stock-locations', '/user-products/MLBU3892038879/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "f8fa4575-00de-4221-9886-4b729bf07feb", "sent": "2026-04-16T18:16:47.475Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:16:47.411Z", "resource": "/user-products/MLBU3892038879/stock", "application_id": 4984880665306039}}', '2026-04-16 18:16:47.774506+00'), ('a56911f2-7496-4ba6-80f8-c61ad57adb9e', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783355', '2503596255', 'MLB4612783355', 'updated', '{"sku": "TM97103", "price": 1050, "title": " Carcaça Válvula Termostato P/ Mercedes C180 C205 2015", "status": "paused"}', '2026-04-16 18:16:48.244238+00'), ('455dbbb4-79b4-4a41-9504-541c11446962', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612819407', '2503596255', 'MLB4612819407', 'updated', '{"sku": "A2702000800", "price": 2340, "title": "Bomba Agua Original Mercedes Cla200 2013 A 2018 A2702000800", "status": "paused"}', '2026-04-16 18:16:48.659134+00'), ('9a279ba5-f8fd-4522-8355-c281a4a55a95', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612794909', '2503596255', 'MLB4612794909', 'updated', '{"sku": "D3Svisual", "price": 94.5, "title": " Par Lampada Xenon D3s Audi Q3 Q5 Q7 35w 6000k Super Vision", "status": "paused"}', '2026-04-16 18:16:49.1269+00'), ('aecafe5f-3abe-45e0-be25-a2b12ab4c66f', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989732', '2503596255', 'MLB6630989732', 'updated', '{"sku": "900315", "price": 290, "title": "Coifa E Batente Amortecedor Dianteiro Bmw F30 316i 320i 328i", "status": "paused"}', '2026-04-16 18:16:49.936068+00'), ('5d37aca5-06aa-4777-84c1-a3fc360a91ed', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612806817', '2503596255', 'MLB4612806817', 'updated', '{"sku": null, "price": 923, "title": "Amortecedor Dianteiro Mercedes Clc200 2008 2009 2010 2011", "status": "paused"}', '2026-04-16 18:16:50.194597+00'), ('2250a333-04b2-4c14-82ca-8d00f31990e4', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612806467', '2503596255', 'MLB4612806467', 'updated', '{"sku": "KITCORRENTECGI", "price": 4338.64, "title": " Kit Completo Polias Comando Mercedes C180 Cgi C200 C250", "status": "paused"}', '2026-04-16 18:16:50.365267+00'); INSERT INTO "public"."ml_webhook_logs" ("id", "user_id", "topic", "resource", "ml_user_id", "listing_id", "action", "details", "created_at") VALUES ('5b53a0dc-09b1-46b3-8fbc-157114e84b4d', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612819699', '2503596255', 'MLB4612819699', 'updated', '{"sku": "P2682", "price": 1950, "title": "Bomba Dágua Range Rover Velar 2.0 P250 2017 À 2024", "status": "paused"}', '2026-04-16 18:16:50.834074+00'), ('7840088d-0447-4006-b799-96d975ab5b6c', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612806775', '2503596255', 'MLB4612806775', 'updated', '{"sku": "AR2709050600", "price": 469, "title": "Sensor Rotação Virabrequim Mercedes Cla250 2013 À 2018 C117", "status": "paused"}', '2026-04-16 18:16:51.080085+00'), ('6d0b72ce-f860-4082-b9a5-0a0a25bdd802', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612819719', '2503596255', 'MLB4612819719', 'updated', '{"sku": "B2702000800GC", "price": 1150, "title": "Bomba Água Mercedes B180 W246 1.6 Turbo 2015 2016 2017 2018", "status": "paused"}', '2026-04-16 18:16:53.429912+00'), ('92e4b2e1-f3a7-40b6-8dca-8278f326c85b', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989536', '2503596255', 'MLB6630989536', 'updated', '{"sku": null, "price": 451.78, "title": " Coxim Do Amortecedor Dianteiro Bmw 320i 330i 330e G20 2019", "status": "paused"}', '2026-04-16 18:16:54.643089+00'), ('b0733f23-9841-4fc6-ab9e-57d0f29cbb5e', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612795255', '2503596255', 'MLB4612795255', 'updated', '{"sku": "P2682", "price": 1852, "title": "Bomba Dágua Land Rover Evoque 2.0 16v Ingenium 2019 2020 21", "status": "paused"}', '2026-04-16 18:16:54.827864+00'), ('8287d6f4-eeeb-4469-aa38-0985c7f8f47b', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989678', '2503596255', 'MLB6630989678', 'updated', '{"sku": "900315", "price": 290, "title": "Kit Batente Amortecedor Dianteiro Bmw 320 2011-2018 Sachs", "status": "paused"}', '2026-04-16 18:16:56.201778+00'), ('c5d909d4-6c28-4742-8a56-1d02c78eaaaf', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989732', '2503596255', 'MLB6630989732', 'updated', '{"sku": "900315", "price": 290, "title": "Coifa E Batente Amortecedor Dianteiro Bmw F30 316i 320i 328i", "status": "paused"}', '2026-04-16 18:17:09.213936+00'), ('27284884-aeba-4e2a-bff7-e2a79b7f6ca8', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783685', '2503596255', 'MLB4612783685', 'updated', '{"sku": "BKR6EGPKIT4", "price": 159, "title": " 4 Velas Ignição Ngk Platina Audi A3 1.8 20v Turbo 2001 2002", "status": "paused"}', '2026-04-16 18:17:18.878408+00'), ('e798cfbb-f9dc-46d0-bdbf-9277bdaca028', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607677530', '2503596255', 'MLB6607677530', 'updated', '{"sku": "2409601", "price": 450, "title": "Pastilha Freio Bmw 320i E90 2007 2012 Dianteira Textar", "status": "active"}', '2026-04-16 17:59:29.284716+00'), ('6bcf782f-3ba5-4333-9051-379b5c7d290e', NULL, 'stock-locations', '/user-products/MLBU3892017843/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "0fad6ec7-754b-464b-b4de-20412838a36c", "sent": "2026-04-16T18:00:01.867Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T17:54:22.03Z", "resource": "/user-products/MLBU3892017843/stock", "application_id": 4984880665306039}}', '2026-04-16 18:00:02.284982+00'), ('a28467e1-4f1c-4504-94c7-ff2376c593ae', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602088625', '2503596255', 'MLB4602088625', 'updated', '{"sku": "B11127552281", "price": 2200, "title": "Tampa Válvula Bmw Bmtsr N52 11127552281 11127582245", "status": "active"}', '2026-04-16 18:00:08.29766+00'), ('c8a6bae3-065e-4d7a-b92a-e67c98d87650', NULL, 'stock-locations', '/user-products/MLBU3903354190/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "48621c6e-5fcf-4269-9049-9673f0bec19e", "sent": "2026-04-16T18:00:38.191Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:00:38.149Z", "resource": "/user-products/MLBU3903354190/stock", "application_id": 4984880665306039}}', '2026-04-16 18:00:38.68635+00'), ('347e78d1-3d58-459b-bc35-ec01c03a6a16', NULL, 'items_prices', '/items/MLB4612783259/prices', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "bfda47cd-16d8-4c4d-a2e6-e594997957cb", "sent": "2026-04-16T18:16:20.333Z", "topic": "items_prices", "actions": [], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:12:07.162Z", "resource": "/items/MLB4612783259/prices", "application_id": 4984880665306039}}', '2026-04-16 18:16:20.707985+00'), ('6d0bc0d0-2b09-47a6-9eeb-839d3553b22e', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989444', '2503596255', 'MLB6630989444', 'updated', '{"sku": "B2701800500", "price": 750, "title": " Suporte Filtro Óleo Mercedes A200 W176 2015 2016", "status": "paused"}', '2026-04-16 18:16:21.422484+00'), ('76f24c12-cef9-4db7-af7e-ac08680e5e66', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602248847', '2503596255', 'MLB4602248847', 'updated', '{"sku": "B31316851747PAR", "price": 1413.83, "title": "Amortecedor Frente Bmtsr X5 3.0 Par 6851745/6851747", "status": "active"}', '2026-04-16 18:16:43.613889+00'), ('980611d3-ed29-45b4-a232-2bcca1c05fd9', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989576', '2503596255', 'MLB6630989576', 'updated', '{"sku": "47324", "price": 650, "title": "Coxim Amort.diant Mercedes Cla180/cla200/a180/a200/gla200", "status": "paused"}', '2026-04-16 18:16:46.729958+00'), ('9678d594-2267-4c95-98f7-0c943c85c026', NULL, 'stock-locations', '/user-products/MLBU3903369910/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "d4b7286e-0346-42da-9dd8-9dd4ea7e71ff", "sent": "2026-04-16T18:16:46.375Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:16:46.261Z", "resource": "/user-products/MLBU3903369910/stock", "application_id": 4984880665306039}}', '2026-04-16 18:16:46.801745+00'), ('27962c03-4942-4431-a5d8-d51a4e559453', NULL, 'stock-locations', '/user-products/MLBU3892038237/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "a9921f47-4510-43ff-8661-34aa559bca09", "sent": "2026-04-16T18:16:47.041Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:16:46.785Z", "resource": "/user-products/MLBU3892038237/stock", "application_id": 4984880665306039}}', '2026-04-16 18:16:47.448699+00'), ('058a97cf-fdef-4d05-a7c3-6be89a2204f8', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783359', '2503596255', 'MLB4612783359', 'updated', '{"sku": "TM97103", "price": 1150, "title": " Termostato P/ Mercedes Glc250 X253 2017 2018", "status": "paused"}', '2026-04-16 18:16:47.580617+00'), ('8706477c-95b8-4ed2-a7cb-1b1a7b872092', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612794959', '2503596255', 'MLB4612794959', 'updated', '{"sku": "ZK818166AB02", "price": 330, "title": "Par Bucha Refil Mancal Bandeja Diant Bmw X2 F39 2020 2021", "status": "paused"}', '2026-04-16 18:16:47.877011+00'), ('8bdd0044-5344-441d-a80e-8e4d46e6f804', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612795255', '2503596255', 'MLB4612795255', 'updated', '{"sku": "P2682", "price": 1852, "title": "Bomba Dágua Land Rover Evoque 2.0 16v Ingenium 2019 2020 21", "status": "paused"}', '2026-04-16 18:16:49.476034+00'), ('a9147c4a-8e6e-48bc-a3f1-1653f22e26ac', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783409', '2503596255', 'MLB4612783409', 'updated', '{"sku": "A2469059402", "price": 398, "title": "Sensor Abs Traseiro Original Mercedes A200 Cla200 Gla200", "status": "paused"}', '2026-04-16 18:16:51.068137+00'), ('5145fbd9-df35-43be-9a96-d544716ee44e', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612819699', '2503596255', 'MLB4612819699', 'updated', '{"sku": "P2682", "price": 1950, "title": "Bomba Dágua Range Rover Velar 2.0 P250 2017 À 2024", "status": "paused"}', '2026-04-16 18:16:51.510656+00'), ('02ec0d08-293b-4700-ad17-d31e6e1adb0b', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612819407', '2503596255', 'MLB4612819407', 'updated', '{"sku": "A2702000800", "price": 2340, "title": "Bomba Agua Original Mercedes Cla200 2013 A 2018 A2702000800", "status": "paused"}', '2026-04-16 18:16:52.187418+00'), ('2425202e-2304-4edb-b315-c770ed9a679b', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612806565', '2503596255', 'MLB4612806565', 'updated', '{"sku": null, "price": 1250, "title": "Válvula Termostática C180 C200 C250 Cgi 2013 14 15 16 2017", "status": "paused"}', '2026-04-16 18:16:52.720847+00'), ('ad60782d-d103-4ffa-b4ad-d9f5603206da', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989836', '2503596255', 'MLB6630989836', 'updated', '{"sku": "B1643202431PAR", "price": 2555.31, "title": "Amortecedor Traseiro Mercedes Ml420 Ml450 Ml500 Ml550 Sachs", "status": "paused"}', '2026-04-16 18:16:53.416214+00'), ('8a47a33d-a86d-43e8-b6de-831760454d76', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612819617', '2503596255', 'MLB4612819617', 'updated', '{"sku": "15-10027-01", "price": 299, "title": "Junta Tampa Válvulas Bmw 125i 320i X1 X3 X4 328i N20 F26", "status": "paused"}', '2026-04-16 18:16:53.581164+00'), ('bca11c10-fc63-435a-a278-c479c7d6f991', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989576', '2503596255', 'MLB6630989576', 'updated', '{"sku": "47324", "price": 650, "title": "Coxim Amort.diant Mercedes Cla180/cla200/a180/a200/gla200", "status": "paused"}', '2026-04-16 18:16:54.109786+00'), ('d9252bde-c8bd-474d-9674-db18cf389f47', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612806479', '2503596255', 'MLB4612806479', 'updated', '{"sku": "318292e293", "price": 1999, "title": "Par Amortecedor Dianteiro Bilstein Bmw X2 - 2017-2021", "status": "paused"}', '2026-04-16 18:16:55.10513+00'), ('1cfdeaf8-a8c3-40ff-87de-6de252549346', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783787', '2503596255', 'MLB4612783787', 'updated', '{"sku": "900126", "price": 250, "title": "Kit Batente Amortecedor Traseiro Bmw X1 E84 2009-2012", "status": "paused"}', '2026-04-16 18:17:20.354781+00'), ('be17da94-0f1a-44a2-a122-0671d5de2ef7', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612819617', '2503596255', 'MLB4612819617', 'updated', '{"sku": "15-10027-01", "price": 299, "title": "Junta Tampa Válvulas Bmw 125i 320i X1 X3 X4 328i N20 F26", "status": "paused"}', '2026-04-16 18:17:22.748275+00'), ('9885685e-42f7-47a2-8d82-4eaeb180c78d', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783409', '2503596255', 'MLB4612783409', 'updated', '{"sku": "A2469059402", "price": 398, "title": "Sensor Abs Traseiro Original Mercedes A200 Cla200 Gla200", "status": "paused"}', '2026-04-16 18:17:23.649039+00'), ('feede46f-45ee-43a9-a6af-c2549ae36aac', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607604644', '2503596255', 'MLB6607604644', 'updated', '{"sku": "b2033202889", "price": 10000, "title": "Bieleta Dianteira Mercedes Clc Cl203 Bmtsr", "status": "active"}', '2026-04-16 18:26:36.749619+00'), ('8d2e1097-0b8c-478a-ae7d-ca3b5c71e822', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607703198', '2503596255', 'MLB6607703198', 'updated', '{"sku": "2409601", "price": 450, "title": "Pastilha Freio Bmw E90 318i 320i 2007 A 2012 Textar", "status": "active"}', '2026-04-16 17:59:39.294711+00'), ('a0452b9c-4509-4fb2-ab26-5bf7013097ed', NULL, 'stock-locations', '/user-products/MLBU3903327916/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "e78ee013-7295-4b1e-ae9a-bd5a18ef1acb", "sent": "2026-04-16T17:59:44.44Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T17:54:23.798Z", "resource": "/user-products/MLBU3903327916/stock", "application_id": 4984880665306039}}', '2026-04-16 17:59:44.889801+00'), ('cb82cfd0-5968-44a0-aa1f-95d634b44e6e', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607737192', '2503596255', 'MLB6607737192', 'updated', '{"sku": "B11127552281", "price": 2200, "title": "Tampa De Válvula Bmw Z4 X1 X3 11127582245 Bmtsr", "status": "active"}', '2026-04-16 17:59:53.535486+00'), ('3d531a41-94cd-45fb-bcc0-9e6a4c84d98b', NULL, 'stock-locations', '/user-products/MLBU3891996665/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "09846ccb-4c45-4f25-a5a4-b73804a614ef", "sent": "2026-04-16T18:00:19.728Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T17:55:04.109Z", "resource": "/user-products/MLBU3891996665/stock", "application_id": 4984880665306039}}', '2026-04-16 18:00:20.260387+00'), ('2a17cdcd-4527-43d0-a9de-32a8d8a48d2d', NULL, 'stock-locations', '/user-products/MLBU3892017071/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "aa929ff9-f0e3-4bcc-8416-41da9a35231f", "sent": "2026-04-16T18:00:37.331Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:00:37.224Z", "resource": "/user-products/MLBU3892017071/stock", "application_id": 4984880665306039}}', '2026-04-16 18:00:37.926792+00'), ('9fcd0b16-ef4a-4900-83dc-2c1bda3b0bbb', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989414', '2503596255', 'MLB6630989414', 'updated', '{"sku": "D3Svisual", "price": 94.5, "title": "2 Lampadas De Xenon Original D3s / D3r 6000k - 1-par Novas", "status": "paused"}', '2026-04-16 18:16:20.970489+00'), ('f2fcdf14-cbc0-4a1a-a035-7c2cf3bbf0db', NULL, 'items_prices', '/items/MLB6630989414/prices', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "2011816c-4bef-4450-bb34-8c81100caf27", "sent": "2026-04-16T18:16:21.977Z", "topic": "items_prices", "actions": [], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:12:13.197Z", "resource": "/items/MLB6630989414/prices", "application_id": 4984880665306039}}', '2026-04-16 18:16:22.353199+00'), ('b38153cc-7027-4aac-8928-4cc9d98d5f26', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989474', '2503596255', 'MLB6630989474', 'updated', '{"sku": "11428575211", "price": 89, "title": " Filtro Óleo Bmw 120i 320i 328i 330i 520i X3 X4 X5 Z4 F20 G", "status": "paused"}', '2026-04-16 18:16:25.096874+00'), ('e80a2f06-bf1a-4183-8e73-3d08b5f2bac7', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612794881', '2503596255', 'MLB4612794881', 'updated', '{"sku": "QYP2710501400e1500", "price": 2050, "title": " Par Polias Comando Variavel Mercedes C180 Cgi C200 C250", "status": "paused"}', '2026-04-16 18:16:26.833777+00'), ('5d07f5a5-8065-4cb5-872c-727725a216fd', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631000134', '2503596255', 'MLB6631000134', 'updated', '{"sku": "D3Svisual", "price": 94.5, "title": " Par Lâmpada Xenon D3s Volvo Xc60 T5 2015 2016 2017 6000k", "status": "paused"}', '2026-04-16 18:16:27.956364+00'), ('faf55643-5dc7-4ef6-9e9f-577b7708e8c6', NULL, 'items_prices', '/items/MLB4612795031/prices', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "e772fd1b-7bce-478b-85d9-39f2e0d3a6d8", "sent": "2026-04-16T18:16:40.936Z", "topic": "items_prices", "actions": [], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:12:28.02Z", "resource": "/items/MLB4612795031/prices", "application_id": 4984880665306039}}', '2026-04-16 18:16:41.32497+00'), ('98bc64e3-0583-41b3-9f3c-c0700cee5f78', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607728908', '2503596255', 'MLB6607728908', 'updated', '{"sku": "B31316851747PAR", "price": 1413.83, "title": "Par Amortecedor X5 F15 3.0 Bmtsr 31316851749/747", "status": "active"}', '2026-04-16 18:16:44.823027+00'), ('59271760-02e7-45ef-9587-21e869d7cc31', NULL, 'stock-locations', '/user-products/MLBU3903359862/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "7db906d3-9900-4e35-a5fa-ee788f343dcc", "sent": "2026-04-16T18:16:45.763Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:16:45.663Z", "resource": "/user-products/MLBU3903359862/stock", "application_id": 4984880665306039}}', '2026-04-16 18:16:46.158661+00'), ('c605a1d9-cfc5-4a7b-ae40-7e1ad2cfe57f', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602248605', '2503596255', 'MLB4602248605', 'updated', '{"sku": "B31316851747PAR", "price": 1499, "title": "Amortecedor Dianteiro Bmtsr X5 Par 31316851745/750", "status": "active"}', '2026-04-16 18:16:46.660783+00'), ('38016c7c-0e74-4c5a-a4d9-453323a18cea', NULL, 'stock-locations', '/user-products/MLBU3892023581/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "2f74b11b-ffb5-4bb7-81cc-14304f9db6d2", "sent": "2026-04-16T18:16:46.494Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:16:46.3Z", "resource": "/user-products/MLBU3892023581/stock", "application_id": 4984880665306039}}', '2026-04-16 18:16:46.85162+00'), ('1ecd565b-75b5-4ab0-93d8-03e1ae725dd4', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989444', '2503596255', 'MLB6630989444', 'updated', '{"sku": "B2701800500", "price": 750, "title": " Suporte Filtro Óleo Mercedes A200 W176 2015 2016", "status": "paused"}', '2026-04-16 18:16:47.002303+00'), ('207e4c47-1bcd-4d38-bfc0-4c96dc1b4eb5', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989738', '2503596255', 'MLB6630989738', 'updated', '{"sku": "900315", "price": 290, "title": "Kit Batente Amortecedor Dianteiro Bmw X3 G01 2017-2021", "status": "paused"}', '2026-04-16 18:16:47.372814+00'); INSERT INTO "public"."ml_webhook_logs" ("id", "user_id", "topic", "resource", "ml_user_id", "listing_id", "action", "details", "created_at") VALUES ('7be60a4d-361a-4331-8bda-f660567a4964', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612819497', '2503596255', 'MLB4612819497', 'updated', '{"sku": "AR2701502900", "price": 260, "title": "Chicote Adaptador Bomba De Oleo Mercedes A200 2013 2014", "status": "paused"}', '2026-04-16 18:16:48.28088+00'), ('13ad2bb1-32d1-4414-9044-d6528a0a70fc', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989596', '2503596255', 'MLB6630989596', 'updated', '{"sku": null, "price": 1390, "title": "Válvula Termostática Mercedes C180 C200 C250 W205 2015 2016", "status": "paused"}', '2026-04-16 18:16:48.693076+00'), ('5a21aa50-f6f0-4d97-998e-b66100de0d2e', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631000224', '2503596255', 'MLB6631000224', 'updated', '{"sku": "A2058350147", "price": 158.51, "title": " Filtro Ar Condicionado Mercedes C250 C300 2015 2016 2017 0", "status": "paused"}', '2026-04-16 18:16:49.478739+00'), ('a3b8738f-0e8f-4456-b0e0-5e0be78708f5', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989474', '2503596255', 'MLB6630989474', 'updated', '{"sku": "11428575211", "price": 89, "title": " Filtro Óleo Bmw 120i 320i 328i 330i 520i X3 X4 X5 Z4 F20 G", "status": "paused"}', '2026-04-16 18:16:50.203146+00'), ('26c708fc-aa54-40f4-9f82-9d4f729dc057', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612819307', '2503596255', 'MLB4612819307', 'updated', '{"sku": "B2702000800GC", "price": 1180, "title": "Bomba Água Mercedes A200 1.6 2014 2015 2016 A2702000801", "status": "paused"}', '2026-04-16 18:16:51.157086+00'), ('d40934e4-1282-4132-baea-c7b9c5d8ebcd', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612819433', '2503596255', 'MLB4612819433', 'updated', '{"sku": null, "price": 451.78, "title": "Coxim Amortecedor Dianteiro Bmw 320i G20 2019-2020", "status": "paused"}', '2026-04-16 18:16:51.555246+00'), ('cfa2f6b7-2d46-4cca-beec-eafd183c89ff', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602292195', '2503596255', NULL, 'error', '{"reason": "token_expired"}', '2026-04-16 21:41:52.5138+00'), ('7605d8a2-a9b5-4cd0-919b-0b2dff4f2715', NULL, 'stock-locations', '/user-products/MLBU3903353446/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "68d7ffde-d7bd-4c31-8f3f-fa5e5c6435bf", "sent": "2026-04-16T17:59:39.643Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T17:54:26.982Z", "resource": "/user-products/MLBU3903353446/stock", "application_id": 4984880665306039}}', '2026-04-16 17:59:40.013784+00'), ('90923436-bdfd-425c-bb28-2470ab0e431c', NULL, 'stock-locations', '/user-products/MLBU3892021039/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "f9aeeca4-56c0-45d6-bf13-3df14642de69", "sent": "2026-04-16T17:59:55.695Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T17:54:26.757Z", "resource": "/user-products/MLBU3892021039/stock", "application_id": 4984880665306039}}', '2026-04-16 17:59:56.325796+00'), ('e76ec538-1931-4e01-b26d-e32b719c175f', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602249803', '2503596255', 'MLB4602249803', 'updated', '{"sku": "B11127552281", "price": 2200, "title": "Tampa Válvula Bmw X1 X3 Z4 N52 11127552281 Bmtsr", "status": "active"}', '2026-04-16 17:59:58.115879+00'), ('ae54254e-d1ff-4c62-89d4-107b327010cb', NULL, 'stock-locations', '/user-products/MLBU3903389116/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "bceeee2e-e2e0-4814-b4e7-80258e3707e4", "sent": "2026-04-16T18:00:14.624Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T17:54:41.862Z", "resource": "/user-products/MLBU3903389116/stock", "application_id": 4984880665306039}}', '2026-04-16 18:00:15.024326+00'), ('c4837cfa-9a6d-444d-b2ef-ba1686e00b74', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607737840', '2503596255', 'MLB6607737840', 'updated', '{"sku": "B11127552281", "price": 2200, "title": "Tampa De Válvula Bmw X1 X3 Z4 N52 2009 A 2017", "status": "active"}', '2026-04-16 18:00:32.171755+00'), ('305fba73-34ef-4940-9bc2-c3f3ef965b49', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602239423', '2503596255', 'MLB4602239423', 'updated', '{"sku": "B34216850569", "price": 420, "title": "Jogo Pastilha Freio Traseira Bmw 34212468436", "status": "active"}', '2026-04-16 18:00:38.067144+00'), ('2568e161-ed6d-443b-85d2-558ac59d429e', NULL, 'items_prices', '/items/MLB6630989444/prices', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "7ec51909-f515-4adf-8923-235d5bbe794a", "sent": "2026-04-16T18:16:20.828Z", "topic": "items_prices", "actions": [], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:12:18.225Z", "resource": "/items/MLB6630989444/prices", "application_id": 4984880665306039}}', '2026-04-16 18:16:21.321808+00'), ('c5f0d49b-5bec-49d4-b335-c78ba71f69da', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631000134', '2503596255', 'MLB6631000134', 'updated', '{"sku": "D3Svisual", "price": 94.5, "title": " Par Lâmpada Xenon D3s Volvo Xc60 T5 2015 2016 2017 6000k", "status": "paused"}', '2026-04-16 18:16:22.133267+00'), ('fbce25ae-aaca-49ad-8c1c-ac9fb7c6cecb', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612806377', '2503596255', 'MLB4612806377', 'updated', '{"sku": "D3Svisual", "price": 94.5, "title": " Par Lampada Xenon D3s Jetta Golf Tiguan Audi A3 A4 Q3 Q7 D", "status": "paused"}', '2026-04-16 18:16:22.415554+00'), ('e78fd537-1938-45c6-a983-866387693ae4', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612794909', '2503596255', 'MLB4612794909', 'updated', '{"sku": "D3Svisual", "price": 94.5, "title": " Par Lampada Xenon D3s Audi Q3 Q5 Q7 35w 6000k Super Vision", "status": "paused"}', '2026-04-16 18:16:27.060816+00'), ('38ef2d70-b39c-4d01-9657-d5e15a4d1c00', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783409', '2503596255', 'MLB4612783409', 'updated', '{"sku": "A2469059402", "price": 398, "title": "Sensor Abs Traseiro Original Mercedes A200 Cla200 Gla200", "status": "paused"}', '2026-04-16 18:16:28.00167+00'), ('8000123e-e783-4925-a73a-e56db1a89c86', NULL, 'stock-locations', '/user-products/MLBU3892037745/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "fa2a98e9-0d37-4d98-a63b-4cbdb558abb7", "sent": "2026-04-16T18:16:45.762Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:16:45.682Z", "resource": "/user-products/MLBU3892037745/stock", "application_id": 4984880665306039}}', '2026-04-16 18:16:46.198301+00'), ('7fc50053-30a7-4501-8209-37e9c90c328d', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612806511', '2503596255', 'MLB4612806511', 'updated', '{"sku": "HU7116Z", "price": 89, "title": " Filtro Oleo Lubrificante Mercedes A200 A250 B200 12/... Cg", "status": "paused"}', '2026-04-16 18:16:46.75659+00'), ('ba375753-0e16-40c8-b7c2-1833610ceb6e', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607748038', '2503596255', 'MLB6607748038', 'updated', '{"sku": "B31316851747PAR", "price": 1413.83, "title": "Par Amortecedor Bmtsr Frente X5 3.0 31316851747", "status": "active"}', '2026-04-16 18:16:46.868136+00'), ('66e5bb7b-e5ab-4562-a680-357ff1dec581', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783355', '2503596255', 'MLB4612783355', 'updated', '{"sku": "TM97103", "price": 1050, "title": " Carcaça Válvula Termostato P/ Mercedes C180 C205 2015", "status": "paused"}', '2026-04-16 18:16:48.09064+00'), ('8d7ae802-d72d-4cb9-905f-4c658c00aec2', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612806527', '2503596255', 'MLB4612806527', 'updated', '{"sku": null, "price": 390, "title": "Lâmpada Xênon Philips D5s 12v 25w Jeep Compass Renegade Audi", "status": "paused"}', '2026-04-16 18:16:49.619293+00'), ('689c78a7-fe7e-4337-883e-42b9efe0d91c', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783425', '2503596255', 'MLB4612783425', 'updated', '{"sku": "47324", "price": 380, "title": "Coxim Amortecedor Mercedes A200 B200 Cla200 2016 2017 2018", "status": "paused"}', '2026-04-16 18:16:49.800668+00'), ('89d791d8-ac8e-4074-bca3-36e9bb770354', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631000134', '2503596255', 'MLB6631000134', 'updated', '{"sku": "D3Svisual", "price": 94.5, "title": " Par Lâmpada Xenon D3s Volvo Xc60 T5 2015 2016 2017 6000k", "status": "paused"}', '2026-04-16 18:16:49.999958+00'), ('63b953e7-73aa-486b-9959-4e0e48bff064', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783259', '2503596255', 'MLB4612783259', 'updated', '{"sku": "B1643200026SP", "price": 790, "title": "Coxim Amortecedor Dianteiro P/ Mercedes Ml320 W164 2011", "status": "paused"}', '2026-04-16 18:16:53.475313+00'), ('9e75434a-b8ad-4205-a037-9eb212ff88c3', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783665', '2503596255', 'MLB4612783665', 'updated', '{"sku": "B2044700894", "price": 1339, "title": "Bomba Combustível Mercedes E250 Cgi 1.8 W212 2010", "status": "paused"}', '2026-04-16 18:16:53.9471+00'), ('05b4c859-dede-414e-9a08-0f789083aa0e', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989414', '2503596255', 'MLB6630989414', 'updated', '{"sku": "D3Svisual", "price": 94.5, "title": "2 Lampadas De Xenon Original D3s / D3r 6000k - 1-par Novas", "status": "paused"}', '2026-04-16 18:16:55.146456+00'), ('9465eead-b7f3-4b32-881f-923d85c16f07', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612806479', '2503596255', 'MLB4612806479', 'updated', '{"sku": "318292e293", "price": 1999, "title": "Par Amortecedor Dianteiro Bilstein Bmw X2 - 2017-2021", "status": "paused"}', '2026-04-16 18:16:55.588283+00'), ('04678596-c0a7-408b-9a00-abb2b9bf1aa2', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612806511', '2503596255', 'MLB4612806511', 'updated', '{"sku": "HU7116Z", "price": 89, "title": " Filtro Oleo Lubrificante Mercedes A200 A250 B200 12/... Cg", "status": "paused"}', '2026-04-16 18:16:55.748023+00'), ('6b2c59dd-ad15-4c49-8091-74235b9719ba', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631000114', '2503596255', 'MLB6631000114', 'updated', '{"sku": "B2701800500", "price": 750, "title": "Suporte Filtro De Óleo Resfriador Mercedes A200 B200 Gla200", "status": "paused"}', '2026-04-16 18:16:58.441031+00'), ('b62bc57d-3821-48b8-8458-f1cd11b42846', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607750000', '2503596255', 'MLB6607750000', 'updated', '{"sku": "B1563232000e1900", "price": 1680, "title": "Par Amortecedor Dianteiro Mercedes Gla 250 2.0 13-19", "status": "active"}', '2026-04-16 18:27:23.894281+00'), ('711c231d-8d73-42d8-85c3-26decabea764', NULL, 'stock-locations', '/user-products/MLBU3892023425/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "cec35741-20b0-4844-ac9f-1003bb2aae51", "sent": "2026-04-16T17:59:40.459Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T17:54:28.451Z", "resource": "/user-products/MLBU3892023425/stock", "application_id": 4984880665306039}}', '2026-04-16 17:59:40.898213+00'), ('e38e10ce-f123-43b0-bee8-3b5ea4d33669', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602236251', '2503596255', 'MLB4602236251', 'updated', '{"sku": "B11127552281", "price": 2075, "title": "Tampa Válvula Bmtsr Bmw N52 X3 E83 Z4 E85 11127582245", "status": "active"}', '2026-04-16 18:00:22.366077+00'), ('14c15e0a-8dc5-4308-b05b-5713c9c1919a', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607749120', '2503596255', 'MLB6607749120', 'updated', '{"sku": "B11127552281", "price": 2200, "title": "Tampa De Válvula Bmw 1 3 5 6 7 Z4 N52 11127552281", "status": "active"}', '2026-04-16 18:00:33.685861+00'), ('abf0cc16-7bbf-4492-8885-7c06a5060432', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602239227', '2503596255', 'MLB4602239227', 'updated', '{"sku": "B34216850569", "price": 420, "title": "Jogo Pastilha Freio Traseira Bmw Série 3 F30 320i", "status": "active"}', '2026-04-16 18:00:38.854363+00'), ('8998a346-121a-4469-b8b1-b7606dfed98d', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783259', '2503596255', 'MLB4612783259', 'updated', '{"sku": "B1643200026SP", "price": 790, "title": "Coxim Amortecedor Dianteiro P/ Mercedes Ml320 W164 2011", "status": "paused"}', '2026-04-16 18:16:22.160377+00'), ('66739780-2979-44cc-8f7d-ed80d2c6ee81', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989474', '2503596255', 'MLB6630989474', 'updated', '{"sku": "11428575211", "price": 89, "title": " Filtro Óleo Bmw 120i 320i 328i 330i 520i X3 X4 X5 Z4 F20 G", "status": "paused"}', '2026-04-16 18:16:29.083959+00'), ('27824e34-6514-4da7-982c-4b537175aa73', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783355', '2503596255', 'MLB4612783355', 'updated', '{"sku": "TM97103", "price": 1050, "title": " Carcaça Válvula Termostato P/ Mercedes C180 C205 2015", "status": "paused"}', '2026-04-16 18:16:30.299962+00'), ('2877d3e7-6ed3-4e9c-a51c-6d6b4e55d668', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602248839', '2503596255', 'MLB4602248839', 'updated', '{"sku": "B31316851747PAR", "price": 1413.83, "title": "Par Amortecedor Dianteiro Bmw X5 Bmtsr 31316851749", "status": "active"}', '2026-04-16 18:16:44.66714+00'), ('99f4cb47-64f0-4352-9d26-2982677fae78', NULL, 'stock-locations', '/user-products/MLBU3903357834/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "dfcce895-0fda-402f-a733-4718a17765a3", "sent": "2026-04-16T18:16:46.166Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:16:46.045Z", "resource": "/user-products/MLBU3903357834/stock", "application_id": 4984880665306039}}', '2026-04-16 18:16:46.529443+00'), ('362cd20b-59e0-4d45-8229-6b255dabf58a', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631000114', '2503596255', 'MLB6631000114', 'updated', '{"sku": "B2701800500", "price": 750, "title": "Suporte Filtro De Óleo Resfriador Mercedes A200 B200 Gla200", "status": "paused"}', '2026-04-16 18:16:46.895432+00'), ('ea616373-c640-4a5a-8f93-827ea5ef880b', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989738', '2503596255', 'MLB6630989738', 'updated', '{"sku": "900315", "price": 290, "title": "Kit Batente Amortecedor Dianteiro Bmw X3 G01 2017-2021", "status": "paused"}', '2026-04-16 18:16:47.563687+00'), ('5dca59e8-1099-4595-8c60-86ae121aa41b', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607732146', '2503596255', 'MLB6607732146', 'updated', '{"sku": "B31316851747PAR", "price": 1413.83, "title": "Par Suspensão Dianteira X5 Bmtsr 31316851750/748", "status": "active"}', '2026-04-16 18:16:47.685903+00'), ('b543492b-5290-48ec-bbca-e318273b1755', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783417', '2503596255', 'MLB4612783417', 'updated', '{"sku": "B31306863135", "price": 380, "title": "Coxim Amort Diant Bmw 320 Série F30, F31, F35 2011/2015", "status": "paused"}', '2026-04-16 18:16:48.15285+00'), ('87ec639c-fbaa-43a3-aaeb-adf1dd36c855', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612795255', '2503596255', 'MLB4612795255', 'updated', '{"sku": "P2682", "price": 1852, "title": "Bomba Dágua Land Rover Evoque 2.0 16v Ingenium 2019 2020 21", "status": "paused"}', '2026-04-16 18:16:49.525128+00'), ('e3c66185-8177-4c7a-944a-55d9f4ef6fd7', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783665', '2503596255', 'MLB4612783665', 'updated', '{"sku": "B2044700894", "price": 1339, "title": "Bomba Combustível Mercedes E250 Cgi 1.8 W212 2010", "status": "paused"}', '2026-04-16 18:16:49.689861+00'), ('23c49d9a-5438-4908-82c2-e9e5bbe2414a', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612819719', '2503596255', 'MLB4612819719', 'updated', '{"sku": "B2702000800GC", "price": 1150, "title": "Bomba Água Mercedes B180 W246 1.6 Turbo 2015 2016 2017 2018", "status": "paused"}', '2026-04-16 18:16:52.146892+00'), ('4c6e0632-7802-4fa9-ad4e-8963d6f5f825', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989764', '2503596255', 'MLB6630989764', 'updated', '{"sku": "AR2702031882", "price": 169, "title": "Mangueira Água Radiador A200 250 B200 Cla Gla - A2702031882", "status": "paused"}', '2026-04-16 18:16:53.988844+00'), ('2779fc1e-10c2-4c04-a4b5-0a344dada2f3', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612819719', '2503596255', 'MLB4612819719', 'updated', '{"sku": "B2702000800GC", "price": 1150, "title": "Bomba Água Mercedes B180 W246 1.6 Turbo 2015 2016 2017 2018", "status": "paused"}', '2026-04-16 18:16:55.036866+00'); INSERT INTO "public"."ml_webhook_logs" ("id", "user_id", "topic", "resource", "ml_user_id", "listing_id", "action", "details", "created_at") VALUES ('d913d536-c4f0-4e92-ae0b-5c3cc451c0c4', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631000366', '2503596255', 'MLB6631000366', 'updated', '{"sku": "46404", "price": 790, "title": "Valvula Termostatica Bmw 320 328 F30 N20 2013 2014 2015 2016", "status": "paused"}', '2026-04-16 18:16:55.702019+00'), ('edaef4b9-5b55-4805-b860-5fa67722a797', NULL, 'items_prices', '/items/MLB4612819407/prices', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "fa7f56ab-7b2e-4199-81f6-6a286a9015e0", "sent": "2026-04-16T18:17:00.895Z", "topic": "items_prices", "actions": [], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:12:23.678Z", "resource": "/items/MLB4612819407/prices", "application_id": 4984880665306039}}', '2026-04-16 18:17:01.219856+00'), ('3d500bc6-15c6-4a9c-a37e-9399cd0d7419', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612795239', '2503596255', 'MLB4612795239', 'updated', '{"sku": "P2682", "price": 1852, "title": "Bomba Dágua Land Rover Evoque Discovery Defender Lr123392", "status": "paused"}', '2026-04-16 18:17:18.594242+00'), ('cf5f9211-350a-4473-af91-3a7da46eec10', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989956', '2503596255', 'MLB6630989956', 'updated', '{"sku": "A2043200131", "price": 2405.11, "title": "Peça De Qualidade: Amortecedor Traseiro Mercedes-benz", "status": "paused"}', '2026-04-16 18:17:18.713742+00'), ('8f065498-1838-4fcd-9deb-cec5ca3a333a', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631000332', '2503596255', 'MLB6631000332', 'updated', '{"sku": "B11377548387", "price": 1350, "title": "Valvetronic Bmw 118 120 320 X1 11377548387 11377509295", "status": "paused"}', '2026-04-16 18:17:20.013731+00'), ('4187b3fe-f2b6-4202-b9db-00895371ccfe', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989576', '2503596255', 'MLB6630989576', 'updated', '{"sku": "47324", "price": 650, "title": "Coxim Amort.diant Mercedes Cla180/cla200/a180/a200/gla200", "status": "paused"}', '2026-04-16 18:17:21.292785+00'), ('f5d5aa02-c867-48d3-8c69-54dafdb2f121', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631000608', '2503596255', 'MLB6631000608', 'updated', '{"sku": "B22118743621", "price": 590, "title": " Coxim Motor Lado Direito Bmw 220i X1 F48 X2 F39 Mini F56", "status": "paused"}', '2026-04-16 18:17:24.820794+00'), ('8d9d2e26-5783-4b0c-b0d8-21a2dd3c49c1', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612795383', '2503596255', 'MLB4612795383', 'updated', '{"sku": "A2043200131", "price": 2550, "title": "Instalação Simples: Amortecedor Traseiro De Alta Performance", "status": "paused"}', '2026-04-16 18:17:25.205266+00'), ('afe43a33-7d89-4a0b-9e45-274e6d95efea', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631000366', '2503596255', 'MLB6631000366', 'updated', '{"sku": "46404", "price": 790, "title": "Valvula Termostatica Bmw 320 328 F30 N20 2013 2014 2015 2016", "status": "paused"}', '2026-04-16 18:17:26.047807+00'), ('a1623fa9-9315-49fc-bc21-2b1c9b34a269', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607714036', '2503596255', 'MLB6607714036', 'updated', '{"sku": "2409601", "price": 450, "title": "Pastilha Freio Dianteira Bmw 320i 2007 2012 Textar", "status": "active"}', '2026-04-16 17:59:44.290529+00'), ('d3de23d4-33b2-4774-a4f2-1d787ed40bca', NULL, 'stock-locations', '/user-products/MLBU3892002161/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "819226b2-fec2-43dd-9772-23c1503db642", "sent": "2026-04-16T17:59:56.67Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T17:54:25.229Z", "resource": "/user-products/MLBU3892002161/stock", "application_id": 4984880665306039}}', '2026-04-16 17:59:57.099809+00'), ('b0688295-b78f-4078-8552-3ad0953b2c07', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607732290', '2503596255', 'MLB6607732290', 'updated', '{"sku": "B11127552281", "price": 2200, "title": "Tampa Cabeçote Bmw X1 E84 Z4 E89 N52 Bmtsr 4 Cilindros", "status": "active"}', '2026-04-16 18:00:26.292323+00'), ('b7b06810-8854-4371-9b9e-3e3b02dd4cc0', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607748744', '2503596255', 'MLB6607748744', 'updated', '{"sku": "B11127552281", "price": 2075, "title": "Tampa Cabeçote Bmw X1 E84 Z4 E89 N52 Bmtsr 4 Cilindros", "status": "active"}', '2026-04-16 18:00:32.996568+00'), ('24ede185-4b8e-41c8-a2ea-f0740fbca3f8', NULL, 'stock-locations', '/user-products/MLBU3903331990/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "a70a1c2b-14fa-4665-8b69-5de979d1327e", "sent": "2026-04-16T18:00:33.842Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T17:55:04.452Z", "resource": "/user-products/MLBU3903331990/stock", "application_id": 4984880665306039}}', '2026-04-16 18:00:34.703501+00'), ('edd46728-ba66-4bc1-9bef-cce7b0659863', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607748014', '2503596255', 'MLB6607748014', 'updated', '{"sku": "B11127552281", "price": 2075, "title": "Tampa Válvula Bmw 3 5 6 7 Z4 N52 Bmtsr 11127582245", "status": "active"}', '2026-04-16 18:00:36.587612+00'), ('64c9efdb-57c1-4352-98fd-80f836f0a556', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783359', '2503596255', 'MLB4612783359', 'updated', '{"sku": "TM97103", "price": 1150, "title": " Termostato P/ Mercedes Glc250 X253 2017 2018", "status": "paused"}', '2026-04-16 18:16:24.861065+00'), ('3bba5787-f89f-4310-b163-b4783df844f2', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607737890', '2503596255', 'MLB6607737890', 'updated', '{"sku": "B31316851747PAR", "price": 1413.83, "title": "Amortecedores Frente Bmw X5 Bmtsr 31316851745/747", "status": "active"}', '2026-04-16 18:16:43.877096+00'), ('7bc3d599-ee83-4cda-aee0-bf5f07661d9e', NULL, 'items_prices', '/items/MLB4612794909/prices', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "946b5a30-9a76-4b6e-9060-052e0cc6af9a", "sent": "2026-04-16T18:16:43.959Z", "topic": "items_prices", "actions": [], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:12:11.11Z", "resource": "/items/MLB4612794909/prices", "application_id": 4984880665306039}}', '2026-04-16 18:16:44.401714+00'), ('70b7d32a-347c-4be7-9949-fb087389d0e1', NULL, 'stock-locations', '/user-products/MLBU3892037405/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "4a29e1cf-8289-4da6-b6cd-b7bb0f47bbe3", "sent": "2026-04-16T18:16:44.451Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:16:44.38Z", "resource": "/user-products/MLBU3892037405/stock", "application_id": 4984880665306039}}', '2026-04-16 18:16:44.857558+00'), ('3b504a91-e5ee-4ed9-9efb-ab2a02d493ae', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602244693', '2503596255', 'MLB4602244693', 'updated', '{"sku": "B31316851747PAR", "price": 1413.83, "title": "Par Suspensão Frente Bmtsr X5 3.0 31316851748/745", "status": "active"}', '2026-04-16 18:16:45.558407+00'), ('331d42dc-efa7-41c6-b0bf-fa4dfdda1fea', NULL, 'stock-locations', '/user-products/MLBU3903371200/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "fe434ea8-6946-4482-b54d-d6f27702d2ee", "sent": "2026-04-16T18:16:46.169Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:16:46.066Z", "resource": "/user-products/MLBU3903371200/stock", "application_id": 4984880665306039}}', '2026-04-16 18:16:46.686713+00'), ('c8cf127e-97ed-4e13-889b-923eada1e085', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612806465', '2503596255', 'MLB4612806465', 'updated', '{"sku": "KITCORRENTECGI", "price": 4338.64, "title": " Kit Corrente Comando Mercedes Benz C180 W204 Cgi 2008/2014", "status": "paused"}', '2026-04-16 18:16:48.094689+00'), ('bea7cbc9-b04b-41b2-a889-96f798cce60e', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989400', '2503596255', 'MLB6630989400', 'updated', '{"sku": "B2701800500", "price": 750, "title": " Trocador Calor Do Motor Mercedes A200 Turbo 2014 2015", "status": "paused"}', '2026-04-16 18:16:48.320224+00'), ('d6d40544-4965-4b45-9c21-9811c1ba0b82', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783359', '2503596255', 'MLB4612783359', 'updated', '{"sku": "TM97103", "price": 1150, "title": " Termostato P/ Mercedes Glc250 X253 2017 2018", "status": "paused"}', '2026-04-16 18:16:49.278677+00'), ('12554f73-72b2-4568-87f3-db6bfd7d6466', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989782', '2503596255', 'MLB6630989782', 'updated', '{"sku": "B1663231465", "price": 129, "title": "Bucha Barra Estabilizadora Dianteira Mercedes Ml350 W166", "status": "paused"}', '2026-04-16 18:16:49.493978+00'), ('f8e083ee-8675-41a3-8758-f51c55664637', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989836', '2503596255', 'MLB6630989836', 'updated', '{"sku": "B1643202431PAR", "price": 2555.31, "title": "Amortecedor Traseiro Mercedes Ml420 Ml450 Ml500 Ml550 Sachs", "status": "paused"}', '2026-04-16 18:16:49.623174+00'), ('cab5987e-0ebd-4ce4-b1ad-ea5189fc01d6', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989764', '2503596255', 'MLB6630989764', 'updated', '{"sku": "AR2702031882", "price": 169, "title": "Mangueira Água Radiador A200 250 B200 Cla Gla - A2702031882", "status": "paused"}', '2026-04-16 18:16:50.669413+00'), ('3c58e44a-a072-4e64-8157-e89e459ee1f9', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612795265', '2503596255', 'MLB4612795265', 'updated', '{"sku": "B0004203002", "price": 465, "title": "Pastilha Freio Dianteira Cerâmica Gla200 Gla250 C/sensor", "status": "paused"}', '2026-04-16 18:16:50.945045+00'), ('2838b351-56a4-44fd-9fce-3b5431919283', NULL, 'stock-locations', '/user-products/MLBU3903349054/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "c0c56c64-9728-4f81-97dc-e9b0cc2a2bcf", "sent": "2026-04-16T18:16:51.603Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 3, "received": "2026-04-16T18:00:36.84Z", "resource": "/user-products/MLBU3903349054/stock", "application_id": 4984880665306039}}', '2026-04-16 18:16:52.050044+00'), ('d2ab9609-b37f-4c5e-8562-ef5f4febdaf3', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783665', '2503596255', 'MLB4612783665', 'updated', '{"sku": "B2044700894", "price": 1339, "title": "Bomba Combustível Mercedes E250 Cgi 1.8 W212 2010", "status": "paused"}', '2026-04-16 18:16:53.482592+00'), ('d6b27f68-deac-4201-9ad4-6645ffced83e', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612806465', '2503596255', 'MLB4612806465', 'updated', '{"sku": "KITCORRENTECGI", "price": 4338.64, "title": " Kit Corrente Comando Mercedes Benz C180 W204 Cgi 2008/2014", "status": "paused"}', '2026-04-16 18:16:54.838438+00'), ('c634c1d8-e878-4771-905f-c1a96f7a9d20', NULL, 'items_prices', '/items/MLB4612794881/prices', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "c60958ed-35d4-4705-b925-838537bbd5fe", "sent": "2026-04-16T18:16:57.832Z", "topic": "items_prices", "actions": [], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:12:07.313Z", "resource": "/items/MLB4612794881/prices", "application_id": 4984880665306039}}', '2026-04-16 18:16:58.144381+00'), ('25001f45-5b63-4519-98bb-b8b39b6915ee', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607786812', '2503596255', NULL, 'error', '{"reason": "token_expired"}', '2026-04-16 21:41:52.610453+00'), ('13db3f32-2510-4b2b-b311-8fed6d2d3d60', NULL, 'stock-locations', '/user-products/MLBU3903332038/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "ad564466-0d4c-47b9-af67-1df5d1786670", "sent": "2026-04-16T17:59:51.844Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T17:54:25.976Z", "resource": "/user-products/MLBU3903332038/stock", "application_id": 4984880665306039}}', '2026-04-16 17:59:52.266132+00'), ('7120709a-651a-4376-a735-5f09bdb2387d', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607735714', '2503596255', 'MLB6607735714', 'updated', '{"sku": "B11127552281", "price": 2075, "title": "Tampa Cabeçote Bmtsr Bmw E60 E70 E90 11127582245", "status": "active"}', '2026-04-16 17:59:52.362883+00'), ('26451c80-94a2-453a-84d4-eeea5e0cb378', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607729184', '2503596255', 'MLB6607729184', 'updated', '{"sku": "B11127552281", "price": 2200, "title": "Tampa Válvula Bmw Bmtsr N52 11127552281 11127582245", "status": "active"}', '2026-04-16 17:59:56.760524+00'), ('b485cc7c-548a-4325-9694-37b5bf2b963f', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607738122', '2503596255', 'MLB6607738122', 'updated', '{"sku": "B11127552281", "price": 2075, "title": "Tampa De Válvula Bmw X1 X3 Z4 N52 2009 A 2017", "status": "active"}', '2026-04-16 18:00:01.206191+00'), ('c93eaf87-ba49-48d7-bdee-04ffe20c427d', NULL, 'stock-locations', '/user-products/MLBU3892000529/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "f511947c-2227-4649-a2b6-fb3fb3f18b96", "sent": "2026-04-16T18:00:10.642Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T17:54:26.77Z", "resource": "/user-products/MLBU3892000529/stock", "application_id": 4984880665306039}}', '2026-04-16 18:00:11.025044+00'), ('fab3b6f4-ccf8-4088-89e7-59e8370c8ffc', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602248791', '2503596255', 'MLB4602248791', 'updated', '{"sku": "B11127552281", "price": 2200, "title": "Tampa Válvula Bmtsr Bmw X1 X3 N52 11127552281 Nova", "status": "active"}', '2026-04-16 18:00:15.489707+00'), ('21a8de22-6754-45be-b148-d1ab02d4c243', NULL, 'stock-locations', '/user-products/MLBU3903338346/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "d08b4821-b103-4ec6-9156-3dde442ebd6e", "sent": "2026-04-16T18:00:33.793Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T17:55:06.277Z", "resource": "/user-products/MLBU3903338346/stock", "application_id": 4984880665306039}}', '2026-04-16 18:00:34.32683+00'), ('6a9d9d43-63d6-46b5-8d98-96ef863f8e2f', NULL, 'stock-locations', '/user-products/MLBU3903349054/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "c0c56c64-9728-4f81-97dc-e9b0cc2a2bcf", "sent": "2026-04-16T18:00:36.868Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:00:36.84Z", "resource": "/user-products/MLBU3903349054/stock", "application_id": 4984880665306039}}', '2026-04-16 18:00:37.360696+00'), ('bb6aadc4-3270-47b6-82dd-95bcad84258c', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602230809', '2503596255', 'MLB4602230809', 'updated', '{"sku": "B34216850569", "price": 420, "title": "Jogo Pastilha Freio Traseira Bmw F30 F80", "status": "active"}', '2026-04-16 18:00:38.306006+00'), ('22c69fcd-1e13-4b50-a452-ffd9aecdbc97', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989732', '2503596255', 'MLB6630989732', 'updated', '{"sku": "900315", "price": 290, "title": "Coifa E Batente Amortecedor Dianteiro Bmw F30 316i 320i 328i", "status": "paused"}', '2026-04-16 18:16:52.800395+00'), ('43bb5b29-fe8b-4b92-a386-b5a19fa113b7', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989444', '2503596255', 'MLB6630989444', 'updated', '{"sku": "B2701800500", "price": 750, "title": " Suporte Filtro Óleo Mercedes A200 W176 2015 2016", "status": "paused"}', '2026-04-16 18:16:55.366512+00'), ('b03da352-8b87-40e3-b62e-3e59b28174a9', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783549', '2503596255', 'MLB4612783549', 'updated', '{"sku": "46404", "price": 790, "title": "Valvula Termostatica Bmw 320 328 X1 X3 X4 Febi11538635689", "status": "paused"}', '2026-04-16 18:16:56.204957+00'), ('06e8d49e-8897-4ace-ac11-9a88fdb8e1d3', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612806553', '2503596255', 'MLB4612806553', 'updated', '{"sku": "46404", "price": 790, "title": "Válvula Termostática Bmw Febi 528i 2.0 16v N20 11538648791", "status": "paused"}', '2026-04-16 18:17:18.541032+00'), ('40dee366-608b-4fa0-b724-57f1268c58a3', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612819497', '2503596255', 'MLB4612819497', 'updated', '{"sku": "AR2701502900", "price": 260, "title": "Chicote Adaptador Bomba De Oleo Mercedes A200 2013 2014", "status": "paused"}', '2026-04-16 18:17:19.022888+00'), ('d49a9420-d64f-4947-aa45-60a99a952842', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783685', '2503596255', 'MLB4612783685', 'updated', '{"sku": "BKR6EGPKIT4", "price": 159, "title": " 4 Velas Ignição Ngk Platina Audi A3 1.8 20v Turbo 2001 2002", "status": "paused"}', '2026-04-16 18:17:19.963113+00'), ('2bd61b6b-da9e-4dbb-9488-0d0e5373922d', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631000608', '2503596255', 'MLB6631000608', 'updated', '{"sku": "B22118743621", "price": 590, "title": " Coxim Motor Lado Direito Bmw 220i X1 F48 X2 F39 Mini F56", "status": "paused"}', '2026-04-16 18:17:22.83429+00'), ('2f51524b-c726-46d6-a4d1-8fb72dd2c6d9', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989842', '2503596255', 'MLB6630989842', 'updated', '{"sku": "B1643202431PAR", "price": 2690, "title": " Amortecedor Traseiro Mercedes Ml350 W164 2005 À 2013", "status": "paused"}', '2026-04-16 18:17:23.876035+00'); INSERT INTO "public"."ml_webhook_logs" ("id", "user_id", "topic", "resource", "ml_user_id", "listing_id", "action", "details", "created_at") VALUES ('8799190f-a53b-401d-8e04-62f27d225bed', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783417', '2503596255', 'MLB4612783417', 'updated', '{"sku": "B31306863135", "price": 380, "title": "Coxim Amort Diant Bmw 320 Série F30, F31, F35 2011/2015", "status": "paused"}', '2026-04-16 18:17:24.397707+00'), ('be59066f-d935-4bbe-a961-e95f6af89893', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631000224', '2503596255', 'MLB6631000224', 'updated', '{"sku": "A2058350147", "price": 158.51, "title": " Filtro Ar Condicionado Mercedes C250 C300 2015 2016 2017 0", "status": "paused"}', '2026-04-16 18:17:25.362721+00'), ('1511ed24-00c2-4bc0-b192-125d73da6e30', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783839', '2503596255', 'MLB4612783839', 'updated', '{"sku": "A2043200131", "price": 2405.11, "title": "Aumente A Segurança: Amortecedor Traseiro Para Mercedes-benz", "status": "paused"}', '2026-04-16 18:17:28.031288+00'), ('c487bf0c-c897-460c-a45f-7482653fea14', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783417', '2503596255', 'MLB4612783417', 'updated', '{"sku": "B31306863135", "price": 380, "title": "Coxim Amort Diant Bmw 320 Série F30, F31, F35 2011/2015", "status": "paused"}', '2026-04-16 18:17:34.376927+00'), ('e2651268-1a05-47ab-aea9-454152e2caf9', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612824697', '2503596255', 'MLB4612824697', 'updated', '{"sku": "37206875177", "price": 5499, "title": "Compressor 37206850555 Bmw X5 F15 F85", "status": "paused"}', '2026-04-16 18:27:50.671656+00'), ('c9b459ca-2ee6-4b41-998a-bedc3fff5ab4', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612811909', '2503596255', 'MLB4612811909', 'updated', '{"sku": "AJDLR036126", "price": 1399, "title": "Bomba Combustivel Lr036126 Land Rover", "status": "paused"}', '2026-04-16 18:28:19.006281+00'), ('901e3168-e33f-4a0b-9ad3-6a602796c756', NULL, 'items_prices', '/items/MLB4612824697/prices', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "29d817d1-0cfd-4e2c-a6d1-0e331e5a8ece", "sent": "2026-04-16T18:28:36.994Z", "topic": "items_prices", "actions": [], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:24:24.256Z", "resource": "/items/MLB4612824697/prices", "application_id": 4984880665306039}}', '2026-04-16 18:28:37.442449+00'), ('a2724078-9ff7-4c18-af6a-84ce68e2f3da', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6589171256', '2503596255', 'MLB6589171256', 'updated', '{"sku": "34206888825", "price": 630, "title": "Pastilha De Freio Traseira Bmw 220i 230i G42 2022 2023", "status": "under_review"}', '2026-04-16 18:46:01.928159+00'), ('cdabf451-1884-47d2-a677-958db12bbc32', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607748416', '2503596255', NULL, 'error', '{"reason": "token_expired"}', '2026-04-16 21:41:53.036735+00'), ('5242aac2-2a29-4ac2-9091-d74ec6680830', NULL, 'stock-locations', '/user-products/MLBU3903357318/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "1a159e33-ba11-4ed3-8ce9-e59858e7feb1", "sent": "2026-04-16T18:00:01.673Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T17:54:28.686Z", "resource": "/user-products/MLBU3903357318/stock", "application_id": 4984880665306039}}', '2026-04-16 18:00:02.143228+00'), ('018aee08-0dbf-4b0f-af82-7c0214b270cb', NULL, 'stock-locations', '/user-products/MLBU3903334966/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "e2f86907-5911-4772-82a6-b8fe66ef1762", "sent": "2026-04-16T18:00:13.743Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T17:55:07.322Z", "resource": "/user-products/MLBU3903334966/stock", "application_id": 4984880665306039}}', '2026-04-16 18:00:14.33888+00'), ('e52b3c72-74d5-4367-91a2-4f2a8643f79b', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602220847', '2503596255', 'MLB4602220847', 'updated', '{"sku": "B34216850569", "price": 420, "title": "Jogo Pastilha Freio Traseira Bmw 320i F30", "status": "active"}', '2026-04-16 18:00:39.165996+00'), ('935430d5-ef6e-4e56-b52d-eccf053e6fff', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602202049', '2503596255', 'MLB4602202049', 'updated', '{"sku": "B34216850569", "price": 420, "title": "Pastilha Freio Traseira Bmw Série 3 2013 A 2018", "status": "active"}', '2026-04-16 18:00:39.257399+00'), ('8c5f7af3-f1ff-4bf7-aadf-e571b622a55f', NULL, 'stock-locations', '/user-products/MLBU3903354646/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "3f186c62-8c05-41f2-86b6-987a7f42fff2", "sent": "2026-04-16T18:00:38.828Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:00:38.711Z", "resource": "/user-products/MLBU3903354646/stock", "application_id": 4984880665306039}}', '2026-04-16 18:00:39.262771+00'), ('0e38e8d7-1d47-473e-bfa8-f750379ecc4f', NULL, 'stock-locations', '/user-products/MLBU3892003869/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "c2af1f5f-13f3-4775-99c6-f40823a18893", "sent": "2026-04-16T18:00:38.927Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:00:38.794Z", "resource": "/user-products/MLBU3892003869/stock", "application_id": 4984880665306039}}', '2026-04-16 18:00:39.48919+00'), ('04765623-7ab2-43b8-8802-89d004909725', NULL, 'stock-locations', '/user-products/MLBU3903348928/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "13cc7645-8ebb-4174-9620-02e4b98d24dd", "sent": "2026-04-16T18:00:38.933Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:00:38.824Z", "resource": "/user-products/MLBU3903348928/stock", "application_id": 4984880665306039}}', '2026-04-16 18:00:39.610836+00'), ('90ccf283-cbcc-49c4-bb42-5f590409714b', NULL, 'stock-locations', '/user-products/MLBU3903344206/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "f0932190-a3d7-4227-b91f-4d07290bf837", "sent": "2026-04-16T18:00:39.329Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:00:39.264Z", "resource": "/user-products/MLBU3903344206/stock", "application_id": 4984880665306039}}', '2026-04-16 18:00:39.759739+00'), ('6e955bfe-fb92-4846-94dd-26e30e556520', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602224287', '2503596255', 'MLB4602224287', 'updated', '{"sku": "B34216850569", "price": 399, "title": "Pastilha Freio Traseira Bmw 34206873094", "status": "active"}', '2026-04-16 18:00:39.937023+00'), ('7893753d-2296-4951-b84d-58930d0419ce', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602243141', '2503596255', 'MLB4602243141', 'updated', '{"sku": "B34216850569", "price": 420, "title": "Pastilha Freio Traseira Bmw 320i F30 2013 A 2018", "status": "active"}', '2026-04-16 18:00:40.391582+00'), ('38c8aa97-5528-4286-bd25-7a6d972c277c', NULL, 'stock-locations', '/user-products/MLBU3892024345/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "efc7e1ae-62af-4aed-a990-2a6800144379", "sent": "2026-04-16T18:00:40.048Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:00:39.928Z", "resource": "/user-products/MLBU3892024345/stock", "application_id": 4984880665306039}}', '2026-04-16 18:00:40.48617+00'), ('dfd3b709-3b32-4461-ab38-13fd7f82a904', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602225259', '2503596255', 'MLB4602225259', 'updated', '{"sku": "B34216850569", "price": 399, "title": "Pastilha Freio Traseira Bmw 34212464312", "status": "active"}', '2026-04-16 18:00:40.735647+00'), ('bdd7f7c6-9452-492e-a87b-ec64732d32a7', NULL, 'stock-locations', '/user-products/MLBU3903342852/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "34ad5a0c-d6b0-4c9b-8b09-5a2d6f20566b", "sent": "2026-04-16T18:00:40.473Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:00:40.376Z", "resource": "/user-products/MLBU3903342852/stock", "application_id": 4984880665306039}}', '2026-04-16 18:00:40.972804+00'), ('097b4c26-31df-421f-959a-72046f1adf64', NULL, 'stock-locations', '/user-products/MLBU3892014995/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "b6547f95-aa53-4d93-b6b4-a3ce3e813c41", "sent": "2026-04-16T18:00:46.493Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:00:46.386Z", "resource": "/user-products/MLBU3892014995/stock", "application_id": 4984880665306039}}', '2026-04-16 18:00:46.976749+00'), ('3f4d2943-b8c8-40f2-b6cc-7e4ed3a48f62', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602228439', '2503596255', 'MLB4602228439', 'updated', '{"sku": "FB11127552281", "price": 2800, "title": "Tampa De Válvula Bmw Linha E60 E90 E70 E63 Marca Febi", "status": "active"}', '2026-04-16 18:00:47.050812+00'), ('403b0797-0628-4d07-b281-a866717c4b77', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607747610', '2503596255', 'MLB6607747610', 'updated', '{"sku": "2430601", "price": 235.91, "title": "Pastilha Freio Cerâmica Mercedes Classe C E Slk", "status": "active"}', '2026-04-16 18:00:47.246233+00'), ('e6a9ed7b-b3b0-4b98-833b-824f1c540a0e', NULL, 'stock-locations', '/user-products/MLBU3903348748/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "c05a4f39-9216-4c68-9797-40c96dd63728", "sent": "2026-04-16T18:00:46.743Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:00:46.686Z", "resource": "/user-products/MLBU3903348748/stock", "application_id": 4984880665306039}}', '2026-04-16 18:00:47.407908+00'), ('10b9ffbd-57cd-4b32-939b-3cae494b7ce2', NULL, 'stock-locations', '/user-products/MLBU3903342928/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "eff3bb94-3509-4ceb-b31a-bf8733704cdf", "sent": "2026-04-16T18:00:47.471Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:00:47.341Z", "resource": "/user-products/MLBU3903342928/stock", "application_id": 4984880665306039}}', '2026-04-16 18:00:48.22734+00'), ('85c91c05-b85a-4c43-b91b-41cac56e7d6d', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602212753', '2503596255', 'MLB4602212753', 'updated', '{"sku": "34106883510", "price": 999.99, "title": "Pastilha Freio Dianteira Bmw 34108064560", "status": "active"}', '2026-04-16 18:00:48.945678+00'), ('b003d7c6-ecd9-466f-9f9d-5a9c23c05f73', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602280631', '2503596255', NULL, 'error', '{"reason": "token_expired"}', '2026-04-16 21:41:54.25902+00'), ('be5a71db-92cf-461f-80cb-2a0a6e82728d', NULL, 'stock-locations', '/user-products/MLBU3903372246/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "95633979-1a9c-4b4c-b8f9-3977d4b140c4", "sent": "2026-04-16T18:00:47.473Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:00:47.375Z", "resource": "/user-products/MLBU3903372246/stock", "application_id": 4984880665306039}}', '2026-04-16 18:00:48.289706+00'), ('76fe5128-0302-4679-bbc3-de50cbdc4dc3', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602246179', '2503596255', 'MLB4602246179', 'updated', '{"sku": "B11127552281", "price": 2075, "title": "Tampa Válvula Bmtsr Bmw 3 E90 5 E60 N52 11127552281", "status": "active"}', '2026-04-16 18:00:52.012443+00'), ('6d3768be-3942-4a5c-a74e-4ef2031b914d', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607738012', '2503596255', 'MLB6607738012', 'updated', '{"sku": "FB11127552281", "price": 2640.91, "title": "Tampa De Válvula Bmw Febi Peça Nova Compatível Diversos", "status": "active"}', '2026-04-16 18:00:52.68814+00'), ('a6ee7518-0064-4a67-893b-906c8800a410', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607737778', '2503596255', 'MLB6607737778', 'updated', '{"sku": "2430601", "price": 235.91, "title": "Pastilha Freio Dianteira Mercedes C180 C200 Cerâmica", "status": "active"}', '2026-04-16 18:01:08.305106+00'), ('afa8b527-c750-499d-82e8-728f5dfc6f19', NULL, 'stock-locations', '/user-products/MLBU3892042069/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "2fa5315e-5c18-44b2-a7fc-11b29573e24f", "sent": "2026-04-16T18:01:15.802Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T17:55:46.788Z", "resource": "/user-products/MLBU3892042069/stock", "application_id": 4984880665306039}}', '2026-04-16 18:01:16.358335+00'), ('41e0b9ff-aade-41d5-83e0-22f031f92a5a', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607734790', '2503596255', 'MLB6607734790', 'updated', '{"sku": "2430601", "price": 235.91, "title": "Jogo Pastilhas Freio Cerâmica Mercedes Dianteira", "status": "active"}', '2026-04-16 18:01:19.366615+00'), ('e04be290-9746-4aaa-950b-3e3de44c22fb', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607716920', '2503596255', 'MLB6607716920', 'updated', '{"sku": "34106883510", "price": 949.99, "title": "Pastilha De Freio Dianteira X6 Xdrive 40i - 2020 A 2025", "status": "active"}', '2026-04-16 18:01:25.329573+00'), ('aac2a4b6-ffa7-47a5-bddc-0e8487e11199', NULL, 'stock-locations', '/user-products/MLBU3892016717/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "c0a5d4eb-a7db-4e72-b3e0-f93f444d95cd", "sent": "2026-04-16T18:01:28.775Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:01:28.695Z", "resource": "/user-products/MLBU3892016717/stock", "application_id": 4984880665306039}}', '2026-04-16 18:01:29.214054+00'), ('8a3bc2f0-f3c1-47aa-82fc-c4f7c6ee3e04', NULL, 'stock-locations', '/user-products/MLBU3892038695/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "d91dcc8c-6fac-4aff-abdf-ae4082547a79", "sent": "2026-04-16T18:02:02.906Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T17:56:26.177Z", "resource": "/user-products/MLBU3892038695/stock", "application_id": 4984880665306039}}', '2026-04-16 18:02:03.335635+00'), ('1f560b50-8449-4580-80cc-e29ae9533558', NULL, 'stock-locations', '/user-products/MLBU3892016255/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "7197c985-1d0b-4c50-972a-ddc2e1dd62ca", "sent": "2026-04-16T18:02:22.869Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T17:56:45.155Z", "resource": "/user-products/MLBU3892016255/stock", "application_id": 4984880665306039}}', '2026-04-16 18:02:23.189588+00'), ('25ecabb0-d597-433c-9a49-13cfdec4882a', NULL, 'stock-locations', '/user-products/MLBU3892042387/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "b1d9323a-4a8e-49f5-ba12-e5a02cec2675", "sent": "2026-04-16T18:02:36.574Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:02:36.457Z", "resource": "/user-products/MLBU3892042387/stock", "application_id": 4984880665306039}}', '2026-04-16 18:02:37.092109+00'), ('29ee1f22-9eb1-4c2e-af96-536bb1326a1a', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612819307', '2503596255', 'MLB4612819307', 'updated', '{"sku": "B2702000800GC", "price": 1180, "title": "Bomba Água Mercedes A200 1.6 2014 2015 2016 A2702000801", "status": "paused"}', '2026-04-16 18:16:59.053623+00'), ('d83f9038-8575-4b83-9996-f0c64d7ce0f3', NULL, 'stock-locations', '/user-products/MLBU3900402431/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "5b017766-bf99-4c40-b833-42cabbea7380", "sent": "2026-04-16T18:17:11.152Z", "topic": "stock-locations", "actions": ["field:status", "action:created"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:12:07.13Z", "resource": "/user-products/MLBU3900402431/stock", "application_id": 4984880665306039}}', '2026-04-16 18:17:11.58824+00'), ('6802e8fd-8aa1-411a-bc54-8501af8c1d5d', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783631', '2503596255', 'MLB4612783631', 'updated', '{"sku": "900315", "price": 290, "title": "Kit Batente Amortecedor Dianteiro Bmw X4 G02 Sachs", "status": "paused"}', '2026-04-16 18:17:18.733113+00'), ('30834312-dbda-4134-9e78-9a95d6c1397e', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631000522', '2503596255', 'MLB6631000522', 'updated', '{"sku": "AR2709050600", "price": 445.55, "title": "Sensor Posição Do Virabrequim Mercedes C180 C200 C250 C300", "status": "paused"}', '2026-04-16 18:17:18.868872+00'), ('1d9865ac-34af-4c1e-a5e4-3c5edbd23899', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989576', '2503596255', 'MLB6630989576', 'updated', '{"sku": "47324", "price": 650, "title": "Coxim Amort.diant Mercedes Cla180/cla200/a180/a200/gla200", "status": "paused"}', '2026-04-16 18:17:19.588635+00'), ('0cd4b146-715b-4957-9d64-2412f8243b52', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612795255', '2503596255', 'MLB4612795255', 'updated', '{"sku": "P2682", "price": 1852, "title": "Bomba Dágua Land Rover Evoque 2.0 16v Ingenium 2019 2020 21", "status": "paused"}', '2026-04-16 18:17:24.102253+00'), ('33666c67-0e7b-464a-bbe1-1d03301dcd3d', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612795301', '2503596255', 'MLB4612795301', 'updated', '{"sku": "B0004203002", "price": 490, "title": "Pastilha Freio Dianteira Cerâmica Mercedes A200 2013 Diante", "status": "paused"}', '2026-04-16 18:17:25.636039+00'), ('4c2a0c53-88bc-4a1e-85a6-79ec7c9c43a2', NULL, 'stock-locations', '/user-products/MLBU3900406115/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "c507b444-524d-4ed0-b0e4-231e0b92c47f", "sent": "2026-04-16T18:28:03.849Z", "topic": "stock-locations", "actions": ["field:status", "action:created"], "user_id": 2503596255, "attempts": 3, "received": "2026-04-16T18:13:16.91Z", "resource": "/user-products/MLBU3900406115/stock", "application_id": 4984880665306039}}', '2026-04-16 18:28:04.330265+00'), ('632d86cb-6a23-4ebe-999c-8f9beb45b202', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612824677', '2503596255', 'MLB4612824677', 'updated', '{"sku": "37206875177", "price": 5224.05, "title": "Compressor 37206868998 Bmw X5 X6 F15 F16", "status": "paused"}', '2026-04-16 18:28:11.310753+00'), ('ce691d2e-697c-4b13-997d-20bfb84c3aec', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612835867', '2503596255', 'MLB4612835867', 'updated', '{"sku": "37206875177", "price": 5224.05, "title": "Compressor 37206850555 X6 F16 F86 M 4.4", "status": "paused"}', '2026-04-16 18:28:15.378508+00'); INSERT INTO "public"."ml_webhook_logs" ("id", "user_id", "topic", "resource", "ml_user_id", "listing_id", "action", "details", "created_at") VALUES ('2becdd69-2bff-4a69-b369-3a070e7f8441', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612824677', '2503596255', 'MLB4612824677', 'updated', '{"sku": "37206875177", "price": 5224.05, "title": "Compressor 37206868998 Bmw X5 X6 F15 F16", "status": "paused"}', '2026-04-16 18:28:45.459337+00'), ('1b51830c-907c-4e70-8863-77a15182b3ec', NULL, 'stock-locations', '/user-products/MLBU3903345794/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "71dbe3fd-5482-4ea4-849a-21e02b3f85b0", "sent": "2026-04-16T18:00:47.974Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:00:47.917Z", "resource": "/user-products/MLBU3903345794/stock", "application_id": 4984880665306039}}', '2026-04-16 18:00:48.613371+00'), ('d8ca4215-118b-49cf-984c-48ae58b5b862', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602231465', '2503596255', 'MLB4602231465', 'updated', '{"sku": "34106883510", "price": 999.99, "title": "Pastilha Freio Dianteira Bmw Série 5 G30", "status": "active"}', '2026-04-16 18:00:50.126344+00'), ('0ed9d9f6-51ed-43f2-8952-aa20e175a52a', NULL, 'stock-locations', '/user-products/MLBU3892034395/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "2350baa5-8240-4cd0-ac3a-4a11a849c081", "sent": "2026-04-16T18:00:51.747Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T17:55:49.116Z", "resource": "/user-products/MLBU3892034395/stock", "application_id": 4984880665306039}}', '2026-04-16 18:00:52.140083+00'), ('3b62e1b1-1a3a-4f97-bb11-78f83d596370', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602209993', '2503596255', 'MLB4602209993', 'updated', '{"sku": "FB11127552281", "price": 2640.91, "title": "Tampa De Válvula Bmw Série 3 E90 Febi Original 90 Dias", "status": "active"}', '2026-04-16 18:00:53.084259+00'), ('cda2d041-0a19-4973-8d12-921b632d7545', NULL, 'stock-locations', '/user-products/MLBU3892020781/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "eb26007b-0e16-4098-ba71-dccc5d9f9a35", "sent": "2026-04-16T18:01:30.628Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:01:30.526Z", "resource": "/user-products/MLBU3892020781/stock", "application_id": 4984880665306039}}', '2026-04-16 18:01:30.945675+00'), ('09c7918d-c892-489f-bc15-68ce2cb91e48', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602236605', '2503596255', 'MLB4602236605', 'updated', '{"sku": "B34216788183", "price": 474.99, "title": "Pastilha De Freio Traseiro Kit Bmw Serie 1 E Serie 3", "status": "active"}', '2026-04-16 18:01:31.738624+00'), ('9ce4ec2a-c8e4-422f-82a0-7f50d77f20bd', NULL, 'stock-locations', '/user-products/MLBU3892039617/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "c412e8ec-8124-424b-8bed-c67b300eb6d0", "sent": "2026-04-16T18:02:11.567Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T17:56:29.15Z", "resource": "/user-products/MLBU3892039617/stock", "application_id": 4984880665306039}}', '2026-04-16 18:02:12.039319+00'), ('bda09307-6810-4e6a-a797-b3a2965fc396', NULL, 'stock-locations', '/user-products/MLBU3903344736/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "7aea4fc0-d022-4010-8a3b-5f7be9ef4aea", "sent": "2026-04-16T18:02:24.847Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T17:56:43.149Z", "resource": "/user-products/MLBU3903344736/stock", "application_id": 4984880665306039}}', '2026-04-16 18:02:25.423087+00'), ('9951d1ee-ecdb-4996-b226-dc963343608a', NULL, 'items_prices', '/items/MLB4612806565/prices', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "9dab47cf-b0f6-4c78-9e7d-d75b7759fab6", "sent": "2026-04-16T18:16:59.904Z", "topic": "items_prices", "actions": [], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:12:42.599Z", "resource": "/items/MLB4612806565/prices", "application_id": 4984880665306039}}', '2026-04-16 18:17:00.250125+00'), ('40662b8f-597c-4fb8-8732-9c827baf466a', NULL, 'items_prices', '/items/MLB6630989782/prices', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "6ed8bab7-e6c7-4e93-8631-b1d12db93dd2", "sent": "2026-04-16T18:17:17.747Z", "topic": "items_prices", "actions": [], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:12:55.453Z", "resource": "/items/MLB6630989782/prices", "application_id": 4984880665306039}}', '2026-04-16 18:17:18.219302+00'), ('37907366-06a3-408c-9af5-9b427db5e67d', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612795265', '2503596255', 'MLB4612795265', 'updated', '{"sku": "B0004203002", "price": 465, "title": "Pastilha Freio Dianteira Cerâmica Gla200 Gla250 C/sensor", "status": "paused"}', '2026-04-16 18:17:18.770329+00'), ('67a36646-170b-4aa6-854c-7c65f940ca4e', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612806479', '2503596255', 'MLB4612806479', 'updated', '{"sku": "318292e293", "price": 1999, "title": "Par Amortecedor Dianteiro Bilstein Bmw X2 - 2017-2021", "status": "paused"}', '2026-04-16 18:17:19.04828+00'), ('dd45e514-20ba-43e2-a19a-ec7caaa46fe6', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989910', '2503596255', 'MLB6630989910', 'updated', '{"sku": "B31316851747PAR", "price": 1413.83, "title": "Amortecedor Dianteiro Para X5 3.0 24v 2012 À 2018", "status": "paused"}', '2026-04-16 18:17:20.939117+00'), ('0be2a76e-747a-4b74-b037-8a371d4b0c4e', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989536', '2503596255', 'MLB6630989536', 'updated', '{"sku": null, "price": 451.78, "title": " Coxim Do Amortecedor Dianteiro Bmw 320i 330i 330e G20 2019", "status": "paused"}', '2026-04-16 18:17:24.115524+00'), ('3dbff14b-5d25-4703-b3ee-e945a1bb006e', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630990074', '2503596255', 'MLB6630990074', 'updated', '{"sku": "A2729060060", "price": 648.99, "title": "Bobina Mercedes C230 C280 E350 Glk350 A2729060060", "status": "paused"}', '2026-04-16 18:17:25.987063+00'), ('ec83673a-fbc4-4a06-b1a2-32841beea2aa', NULL, 'user-products-families', '/sites/MLB/user-products-families/4658944633376144', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "fec7e37a-9e57-46d0-bdf7-743daa1f1181", "sent": "2026-04-16T18:17:36.135Z", "topic": "user-products-families", "actions": ["create"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:12:25.735Z", "resource": "/sites/MLB/user-products-families/4658944633376144", "application_id": 4984880665306039}}', '2026-04-16 18:17:36.560055+00'), ('0ce88567-f80c-4b74-a272-fb9c5b8cf9ee', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612806587', '2503596255', 'MLB4612806587', 'updated', '{"sku": "900315", "price": 290, "title": "Kit Batente Amortecedor Dianteiro Bmw X1 F48 2014-2018", "status": "paused"}', '2026-04-16 18:17:38.882082+00'), ('31da0559-f579-4c90-84b5-af02b2dab6d4', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612824677', '2503596255', 'MLB4612824677', 'updated', '{"sku": "37206875177", "price": 5224.05, "title": "Compressor 37206868998 Bmw X5 X6 F15 F16", "status": "paused"}', '2026-04-16 18:28:10.995811+00'), ('f09c0c84-1e06-4fff-ac2e-23fc55b5240a', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4592189233', '2503596255', 'MLB4592189233', 'updated', '{"sku": "QYP2702000800", "price": 890, "title": " Bomba D''água Mercedes A200 W176 2012 2013", "status": "under_review"}', '2026-04-16 18:46:02.896378+00'), ('8bdcb8fd-3f2e-493f-ac81-f15b5f0bdaf1', NULL, 'items_prices', '/items/MLB6631233300/prices', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "aa3b22c9-47aa-4ccf-a579-0230adde208d", "sent": "2026-04-16T18:49:41.276Z", "topic": "items_prices", "actions": [], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:49:41.144Z", "resource": "/items/MLB6631233300/prices", "application_id": 4984880665306039}}', '2026-04-16 18:49:41.637269+00'), ('9f515b56-520a-4ceb-879a-1ed3cb636230', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631269138', '2503596255', 'MLB6631269138', 'inserted', '{"sku": "B17137609469", "price": 728, "title": "Tanque Expansão Bmtsr Bmw F22 F23 F32 F33 Peça Nova Garantia", "status": "paused"}', '2026-04-16 18:49:41.825919+00'), ('cf646450-76c5-4363-90c5-c5da6bc50965', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602259021', '2503596255', NULL, 'error', '{"reason": "token_expired"}', '2026-04-16 21:41:54.76984+00'), ('9b350f64-4a23-45e2-8409-612cd1818333', NULL, 'stock-locations', '/user-products/MLBU3903343142/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "65c28984-9ff4-49e5-b234-5de7fe362a18", "sent": "2026-04-16T18:00:48.342Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:00:48.281Z", "resource": "/user-products/MLBU3903343142/stock", "application_id": 4984880665306039}}', '2026-04-16 18:00:48.999027+00'), ('c8ceb30d-3f04-40c8-af5a-5d5908c55e30', NULL, 'stock-locations', '/user-products/MLBU3892038941/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "3513d253-bf4e-4f04-b786-f31c416cda77", "sent": "2026-04-16T18:00:56.536Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T17:55:50.788Z", "resource": "/user-products/MLBU3892038941/stock", "application_id": 4984880665306039}}', '2026-04-16 18:00:56.992615+00'), ('0801987b-da0f-47c3-86a3-3a3fe82b7f12', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602224611', '2503596255', 'MLB4602224611', 'updated', '{"sku": "34106883510", "price": 999.99, "title": "Pastilha Freio Bmw 34116874431", "status": "active"}', '2026-04-16 18:01:07.490502+00'), ('9bbba7e6-89e8-4b29-95dd-e3b1b818729f', NULL, 'stock-locations', '/user-products/MLBU3903352446/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "a94a178f-b3b6-4e03-97bd-76f6009f04fe", "sent": "2026-04-16T18:01:28.494Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:01:28.384Z", "resource": "/user-products/MLBU3903352446/stock", "application_id": 4984880665306039}}', '2026-04-16 18:01:28.901329+00'), ('ab48cd7f-a2dd-4b8a-bf9c-9c32c7851730', NULL, 'stock-locations', '/user-products/MLBU3892012565/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "dfe2b139-570c-4a2a-917d-e70f6a6b00e1", "sent": "2026-04-16T18:01:31.746Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:01:31.635Z", "resource": "/user-products/MLBU3892012565/stock", "application_id": 4984880665306039}}', '2026-04-16 18:01:32.039548+00'), ('0a6ae36a-e935-4e82-905f-fd6c8d4550fc', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602253861', '2503596255', 'MLB4602253861', 'updated', '{"sku": "0242135509", "price": 90, "title": "Vela Ignicao Mercedes C280 E350 Ml500 Clk Slk", "status": "active"}', '2026-04-16 18:01:56.260517+00'), ('134680a2-951d-4499-90a3-8be79293d044', NULL, 'stock-locations', '/user-products/MLBU3892036147/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "8bc29fc9-6a33-43ce-9494-b99c9c7d051f", "sent": "2026-04-16T18:02:18.838Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T17:56:29.079Z", "resource": "/user-products/MLBU3892036147/stock", "application_id": 4984880665306039}}', '2026-04-16 18:02:19.276944+00'), ('a563def5-99e9-48a8-8d37-16c0412890f6', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783549', '2503596255', 'MLB4612783549', 'updated', '{"sku": "46404", "price": 790, "title": "Valvula Termostatica Bmw 320 328 X1 X3 X4 Febi11538635689", "status": "paused"}', '2026-04-16 18:17:19.039361+00'), ('510e3a28-30ca-445b-90c5-17d35c550679', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989678', '2503596255', 'MLB6630989678', 'updated', '{"sku": "900315", "price": 290, "title": "Kit Batente Amortecedor Dianteiro Bmw 320 2011-2018 Sachs", "status": "paused"}', '2026-04-16 18:17:20.110123+00'), ('b2084dfe-6c23-4267-ad9f-ed7095d214ca', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989764', '2503596255', 'MLB6630989764', 'updated', '{"sku": "AR2702031882", "price": 169, "title": "Mangueira Água Radiador A200 250 B200 Cla Gla - A2702031882", "status": "paused"}', '2026-04-16 18:17:20.873861+00'), ('cb276df1-a81e-4cb0-bd68-60f30edc408b', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783839', '2503596255', 'MLB4612783839', 'updated', '{"sku": "A2043200131", "price": 2405.11, "title": "Aumente A Segurança: Amortecedor Traseiro Para Mercedes-benz", "status": "paused"}', '2026-04-16 18:17:22.782847+00'), ('b39fcc69-3397-4b9c-893f-70c438bc0538', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989984', '2503596255', 'MLB6630989984', 'updated', '{"sku": "B11127552281", "price": 2200, "title": "Tampa De Válvula Bmw E90 E60 E70 11127552281 Bmtsr", "status": "paused"}', '2026-04-16 18:17:23.858617+00'), ('3e6bf876-722f-446c-9a7d-1da2244f67b8', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631000708', '2503596255', 'MLB6631000708', 'updated', '{"sku": "A2729060060", "price": 648.99, "title": "Bobina Ignição Mercedes C230 C280 Cls350 A2729060060", "status": "paused"}', '2026-04-16 18:17:25.574731+00'), ('7478afe4-ad53-4c86-a201-918f048a293b', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783627', '2503596255', 'MLB4612783627', 'updated', '{"sku": "B0004706394", "price": 640, "title": "Bomba Gasolina Mercedes C180 C200 C230 C280 Clk320 Clk230", "status": "paused"}', '2026-04-16 18:17:26.69107+00'), ('e30160b5-9973-4a29-bdf1-c5eb57561028', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612806511', '2503596255', 'MLB4612806511', 'updated', '{"sku": "HU7116Z", "price": 89, "title": " Filtro Oleo Lubrificante Mercedes A200 A250 B200 12/... Cg", "status": "paused"}', '2026-04-16 18:17:29.361931+00'), ('810bce56-fa45-4751-ba85-44716656bd6f', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612819827', '2503596255', 'MLB4612819827', 'updated', '{"sku": "B11127552281", "price": 2075, "title": "Tampa Válvula Bmw N52 Bmtsr Série 3 5 6 11127582245", "status": "paused"}', '2026-04-16 18:17:30.562834+00'), ('ca2a3ec4-7f43-4197-be94-de646110ace3', NULL, 'stock-locations', '/user-products/MLBU3900402547/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "eef88ae0-f34b-41c3-af64-c0171f359080", "sent": "2026-04-16T18:17:35.345Z", "topic": "stock-locations", "actions": ["field:status", "action:created"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:12:13.605Z", "resource": "/user-products/MLBU3900402547/stock", "application_id": 4984880665306039}}', '2026-04-16 18:17:35.631391+00'), ('52809913-b52e-4c43-a455-a35c744896b7', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612824697', '2503596255', 'MLB4612824697', 'updated', '{"sku": "37206875177", "price": 5499, "title": "Compressor 37206850555 Bmw X5 F15 F85", "status": "paused"}', '2026-04-16 18:28:11.500406+00'), ('96561ef1-2ec5-44a1-be15-cd3ef457eece', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612811909', '2503596255', 'MLB4612811909', 'updated', '{"sku": "AJDLR036126", "price": 1399, "title": "Bomba Combustivel Lr036126 Land Rover", "status": "paused"}', '2026-04-16 18:28:21.592379+00'), ('ce5e81ad-5786-40a3-a2d8-00e42899b4fa', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612824697', '2503596255', 'MLB4612824697', 'updated', '{"sku": "37206875177", "price": 5499, "title": "Compressor 37206850555 Bmw X5 F15 F85", "status": "paused"}', '2026-04-16 18:28:41.969852+00'), ('3795a7e4-8594-48ae-af38-ba3bfe5baf79', NULL, 'stock-locations', '/user-products/MLBU3900480963/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "4947e573-99ab-46e2-9205-b45f46ae9023", "sent": "2026-04-16T18:47:31.791Z", "topic": "stock-locations", "actions": ["field:status", "action:created"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:47:31.681Z", "resource": "/user-products/MLBU3900480963/stock", "application_id": 4984880665306039}}', '2026-04-16 18:47:32.53694+00'), ('472f8db3-c450-4d29-b034-d7f3bfb1fad2', NULL, 'items_prices', '/items/MLB6631267916/prices', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "9502f117-8a1f-4a14-b817-5326a04bae70", "sent": "2026-04-16T18:47:36.063Z", "topic": "items_prices", "actions": [], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:47:35.657Z", "resource": "/items/MLB6631267916/prices", "application_id": 4984880665306039}}', '2026-04-16 18:47:36.532443+00'), ('74271168-fecc-40bd-aaf9-aa1974e0eb30', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607719030', '2503596255', NULL, 'error', '{"reason": "token_expired"}', '2026-04-16 21:41:54.90133+00'), ('661397a5-5ed5-4f2a-a113-4beb07890ab9', NULL, 'stock-locations', '/user-products/MLBU3892038313/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "0cb47d6a-75df-4057-8f12-cbd54cad3ffd", "sent": "2026-04-16T18:00:49.182Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:00:49.065Z", "resource": "/user-products/MLBU3892038313/stock", "application_id": 4984880665306039}}', '2026-04-16 18:00:49.589383+00'), ('d858b141-f08d-4926-a7f6-f7d7cab33cc1', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602225403', '2503596255', 'MLB4602225403', 'updated', '{"sku": "FB11127552281", "price": 2640.91, "title": "Tampa De Válvula Febi Original Compatível Com Bmw Z4", "status": "active"}', '2026-04-16 18:00:52.5809+00'), ('2cac0a2c-84a5-4494-b0ca-beb4df3b88ac', NULL, 'stock-locations', '/user-products/MLBU3892034013/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "3ba4ea3c-a62a-451e-8d1d-3a28e0716d26", "sent": "2026-04-16T18:00:58.841Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T17:55:47.856Z", "resource": "/user-products/MLBU3892034013/stock", "application_id": 4984880665306039}}', '2026-04-16 18:00:59.386365+00'), ('a9c9e294-451a-4968-a7a4-24a9744e7edb', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607739078', '2503596255', 'MLB6607739078', 'updated', '{"sku": "2430601", "price": 250.12, "title": "Pastilha Freio Dianteira Mercedes C180 C200 Cerâmica", "status": "active"}', '2026-04-16 18:01:19.316652+00'); INSERT INTO "public"."ml_webhook_logs" ("id", "user_id", "topic", "resource", "ml_user_id", "listing_id", "action", "details", "created_at") VALUES ('3fd68491-b0e7-42ce-a174-ce18ac82cd3c', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607724224', '2503596255', 'MLB6607724224', 'updated', '{"sku": "B34216788183", "price": 499.99, "title": "Pastilha Freio Traseira Bmw Série 1 Hatch E81 E87", "status": "active"}', '2026-04-16 18:01:29.117438+00'), ('2650d782-a89f-4496-8e78-abdbc011b762', NULL, 'stock-locations', '/user-products/MLBU3892037701/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "ec5bf90a-1706-4f6e-ad51-963a9215fe61", "sent": "2026-04-16T18:01:30.843Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T17:55:48.435Z", "resource": "/user-products/MLBU3892037701/stock", "application_id": 4984880665306039}}', '2026-04-16 18:01:31.14715+00'), ('dcf1d58e-2e05-4f64-80ba-874c32dacaa5', NULL, 'stock-locations', '/user-products/MLBU3892013267/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "8db9474f-3021-4c9c-82eb-3e02f90de761", "sent": "2026-04-16T18:01:31.73Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:01:31.585Z", "resource": "/user-products/MLBU3892013267/stock", "application_id": 4984880665306039}}', '2026-04-16 18:01:32.089196+00'), ('6f26f953-677f-46ce-bbbc-ec34f66f0d4e', NULL, 'stock-locations', '/user-products/MLBU3892028537/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "57b8ee1c-0b30-4e9a-97f2-430f5f611a25", "sent": "2026-04-16T18:02:01.812Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T17:56:27.174Z", "resource": "/user-products/MLBU3892028537/stock", "application_id": 4984880665306039}}', '2026-04-16 18:02:02.40086+00'), ('72f160c4-a74c-4ae5-b2ef-b812ca6c2844', NULL, 'stock-locations', '/user-products/MLBU3903341182/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "5209c942-e58b-44e2-999e-56beb3bca77c", "sent": "2026-04-16T18:02:20.86Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T17:56:44.125Z", "resource": "/user-products/MLBU3903341182/stock", "application_id": 4984880665306039}}', '2026-04-16 18:02:21.211237+00'), ('f91ffada-e6c7-439b-bf20-b637dd01743b', NULL, 'stock-locations', '/user-products/MLBU3903371100/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "783f55a5-0f85-4f71-9e5e-f278abb56e51", "sent": "2026-04-16T18:02:36.267Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:02:36.162Z", "resource": "/user-products/MLBU3903371100/stock", "application_id": 4984880665306039}}', '2026-04-16 18:02:36.750707+00'), ('21255e5f-2a9d-4a2b-a05e-603bcb0e3f7f', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783627', '2503596255', 'MLB4612783627', 'updated', '{"sku": "B0004706394", "price": 640, "title": "Bomba Gasolina Mercedes C180 C200 C230 C280 Clk320 Clk230", "status": "paused"}', '2026-04-16 18:17:20.454829+00'), ('e5ad214c-6470-4096-b6ab-04a8a726aa93', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989732', '2503596255', 'MLB6630989732', 'updated', '{"sku": "900315", "price": 290, "title": "Coifa E Batente Amortecedor Dianteiro Bmw F30 316i 320i 328i", "status": "paused"}', '2026-04-16 18:17:21.127384+00'), ('c23950d8-ba6f-4ba8-aec0-2d25430c6cde', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989984', '2503596255', 'MLB6630989984', 'updated', '{"sku": "B11127552281", "price": 2200, "title": "Tampa De Válvula Bmw E90 E60 E70 11127552281 Bmtsr", "status": "paused"}', '2026-04-16 18:17:22.027799+00'), ('d07b42c0-fbb8-483f-b991-09a66ffa09ec', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783355', '2503596255', 'MLB4612783355', 'updated', '{"sku": "TM97103", "price": 1050, "title": " Carcaça Válvula Termostato P/ Mercedes C180 C205 2015", "status": "paused"}', '2026-04-16 18:17:23.47855+00'), ('8c692f51-860c-4c64-aa9e-a0d2ec04ec57', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631000494', '2503596255', 'MLB6631000494', 'updated', '{"sku": "B2702000800GC", "price": 1200, "title": "Bomba Dagua Mercedes A200 Cla200 Gla200 B200 A250 Cla250", "status": "paused"}', '2026-04-16 18:17:24.102059+00'), ('8a185842-10f7-4fec-a366-bde653dea7e8', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612795381', '2503596255', 'MLB4612795381', 'updated', '{"sku": "B22118743621", "price": 590, "title": "Coxim Direito Motor Bmw X1 F48 2015 2016 2017 2018 2019", "status": "paused"}', '2026-04-16 18:17:24.652989+00'), ('ceb42bd5-5e0a-4623-bebc-990caa45cf2d', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612819891', '2503596255', 'MLB4612819891', 'updated', '{"sku": "A2729060060", "price": 648.99, "title": "Bobina Ignição Mercedes V6 M272 C280 E350 4 Pinos", "status": "paused"}', '2026-04-16 18:17:27.132123+00'), ('3e766393-1dd5-4c8e-bd3a-7806e8be5a3c', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612835867', '2503596255', 'MLB4612835867', 'updated', '{"sku": "37206875177", "price": 5224.05, "title": "Compressor 37206850555 X6 F16 F86 M 4.4", "status": "paused"}', '2026-04-16 18:28:12.190336+00'), ('b7fa925d-3acf-4662-b86b-056233a7a523', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612800415', '2503596255', 'MLB4612800415', 'updated', '{"sku": "37206875177", "price": 5499, "title": "Compressor Ar Bmw X5 F15 F85 Xdrive 28i 30d 35i", "status": "paused"}', '2026-04-16 18:28:43.073143+00'), ('a722ed4d-97df-4f09-8803-28a9bc2e8de5', NULL, 'items_prices', '/items/MLB6631267896/prices', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "1361d22a-55b5-4086-80b3-3413b5ee8014", "sent": "2026-04-16T18:47:32.232Z", "topic": "items_prices", "actions": [], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:47:31.957Z", "resource": "/items/MLB6631267896/prices", "application_id": 4984880665306039}}', '2026-04-16 18:47:32.801482+00'), ('6cbd86f4-1d90-43df-81e4-cb9d5c4d867b', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631257770', '2503596255', 'MLB6631257770', 'updated', '{"sku": null, "price": 2980, "title": "Par Amortecedor Traseiro Mercedes Glc250 Glc300 A2533201330", "status": "paused"}', '2026-04-16 18:49:41.797393+00'), ('8bee200a-7427-4310-af38-f89efb800a39', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4592189233', '2503596255', 'MLB4592189233', 'updated', '{"sku": "QYP2702000800", "price": 890, "title": " Bomba D''água Mercedes A200 W176 2012 2013", "status": "under_review"}', '2026-04-16 18:50:18.545657+00'), ('0ce820f2-df83-401b-b42e-5a54fb01f63a', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602240251', '2503596255', NULL, 'error', '{"reason": "token_expired"}', '2026-04-16 21:41:56.050086+00'), ('65e0c795-b25c-41fe-81fa-7f3af3d1d4b6', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602228889', '2503596255', 'MLB4602228889', 'updated', '{"sku": "FB11127552281", "price": 2800, "title": "Tampa De Válvula Febi Original Compatível Com Bmw Z4", "status": "active"}', '2026-04-16 18:00:51.725808+00'), ('95b42f24-b200-49d1-9f7a-3beb44fb1ca6', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602237657', '2503596255', 'MLB4602237657', 'updated', '{"sku": "34106883510", "price": 999.99, "title": "Pastilha Freio Dianteira Bmw X3 G01 X4 G02", "status": "active"}', '2026-04-16 18:00:58.614691+00'), ('bad2852b-7491-47cc-a4ca-1c2d8d8b94c0', NULL, 'stock-locations', '/user-products/MLBU3892042043/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "2e7827ef-c2b2-4c04-9fef-fb1b1116e2bb", "sent": "2026-04-16T18:01:00.711Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T17:55:46.089Z", "resource": "/user-products/MLBU3892042043/stock", "application_id": 4984880665306039}}', '2026-04-16 18:01:02.429319+00'), ('f4116037-b510-460b-8849-1c6bd7fb1c3b', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602214739', '2503596255', 'MLB4602214739', 'updated', '{"sku": "34106883510", "price": 999.99, "title": "Pastilha Freio Dianteira Bmw X6 G06 F96", "status": "active"}', '2026-04-16 18:01:03.89887+00'), ('cdaeae8a-012f-4de0-91f0-751cdcf46321', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602228157', '2503596255', 'MLB4602228157', 'updated', '{"sku": "34106883510", "price": 999.99, "title": "Pastilha Freio Dianteira Bmw X7 G07", "status": "active"}', '2026-04-16 18:01:10.773071+00'), ('da8c9875-eb2e-419d-8262-732079cf5240', NULL, 'stock-locations', '/user-products/MLBU3903367224/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "2daa8dbe-6230-4813-aaaf-f751be1162b1", "sent": "2026-04-16T18:01:22.736Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T17:55:50.576Z", "resource": "/user-products/MLBU3903367224/stock", "application_id": 4984880665306039}}', '2026-04-16 18:01:23.151509+00'), ('34cd677b-7932-42d5-8b24-7382b7db89fe', NULL, 'stock-locations', '/user-products/MLBU3892016725/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "bc54bbdc-a43b-49b0-8294-089a56e27a6e", "sent": "2026-04-16T18:01:27.458Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:01:27.292Z", "resource": "/user-products/MLBU3892016725/stock", "application_id": 4984880665306039}}', '2026-04-16 18:01:27.988923+00'), ('4283da6f-d88a-426b-a542-49c11fc2d22a', NULL, 'stock-locations', '/user-products/MLBU3903352976/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "e5306138-0467-4f6e-a1c1-f210063ff509", "sent": "2026-04-16T18:01:29.62Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:01:29.555Z", "resource": "/user-products/MLBU3903352976/stock", "application_id": 4984880665306039}}', '2026-04-16 18:01:30.029706+00'), ('02a4e748-f168-4afe-ad2b-d603c68d834c', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602208997', '2503596255', 'MLB4602208997', 'updated', '{"sku": "B34216788183", "price": 499.99, "title": "Pastilha De Freio Traseiro Kit Bmw Serie 1 E Serie 3", "status": "active"}', '2026-04-16 18:01:31.868712+00'), ('25d12b9b-f371-42ea-a227-297583210974', NULL, 'stock-locations', '/user-products/MLBU3903366468/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "cccd0aee-ab2a-4779-8f11-e68850cae89b", "sent": "2026-04-16T18:01:32.348Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:01:32.265Z", "resource": "/user-products/MLBU3903366468/stock", "application_id": 4984880665306039}}', '2026-04-16 18:01:32.725694+00'), ('855e2e92-eb2d-4a51-974b-4dc376929b0c', NULL, 'stock-locations', '/user-products/MLBU3892020281/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "9c81423f-a7a5-4bdd-bdbd-7331e96a9d63", "sent": "2026-04-16T18:01:47.836Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T17:56:43.322Z", "resource": "/user-products/MLBU3892020281/stock", "application_id": 4984880665306039}}', '2026-04-16 18:01:48.34576+00'), ('a7a5f501-164b-4cb9-acc5-a47dd420e0e2', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631000560', '2503596255', 'MLB6631000560', 'updated', '{"sku": null, "price": 999.99, "title": "Chicote E Válvula Óleo Mercedes C300 A200 Kit A2781800415", "status": "paused"}', '2026-04-16 18:17:21.27511+00'), ('d5db1da9-a5e2-46b5-bae6-923da2864562', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612795265', '2503596255', 'MLB4612795265', 'updated', '{"sku": "B0004203002", "price": 465, "title": "Pastilha Freio Dianteira Cerâmica Gla200 Gla250 C/sensor", "status": "paused"}', '2026-04-16 18:17:22.95829+00'), ('6d7a8cb1-aec8-4e30-a687-4feacaca3d15', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612806511', '2503596255', 'MLB4612806511', 'updated', '{"sku": "HU7116Z", "price": 89, "title": " Filtro Oleo Lubrificante Mercedes A200 A250 B200 12/... Cg", "status": "paused"}', '2026-04-16 18:17:23.750336+00'), ('3a4b4e28-d04f-44c0-bc49-fecb70416f5f', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989842', '2503596255', 'MLB6630989842', 'updated', '{"sku": "B1643202431PAR", "price": 2690, "title": " Amortecedor Traseiro Mercedes Ml350 W164 2005 À 2013", "status": "paused"}', '2026-04-16 18:17:24.510137+00'), ('b60b2b13-a28b-4d66-ba23-819a3d4d494f', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612819433', '2503596255', 'MLB4612819433', 'updated', '{"sku": null, "price": 451.78, "title": "Coxim Amortecedor Dianteiro Bmw 320i G20 2019-2020", "status": "paused"}', '2026-04-16 18:17:25.991011+00'), ('f47d2ef8-ac92-4181-b8b2-b10675305abf', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612795227', '2503596255', 'MLB4612795227', 'updated', '{"sku": "BKR6EGPKIT4", "price": 156.89, "title": "4 Velas Ignição Ngk Platina Sandero 1.6 8v 2011 2012 2013", "status": "paused"}', '2026-04-16 18:17:26.920049+00'), ('7fdb85f3-3594-4dd1-86e6-aaa40e48fb65', NULL, 'stock-locations', '/user-products/MLBU3911804858/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "87a22c94-2077-4a89-b257-562497078bef", "sent": "2026-04-16T18:17:33.157Z", "topic": "stock-locations", "actions": ["field:status", "action:created"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:12:11.444Z", "resource": "/user-products/MLBU3911804858/stock", "application_id": 4984880665306039}}', '2026-04-16 18:17:33.487764+00'), ('97c29361-9477-4f4c-bfe2-296b8b236a35', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612800415', '2503596255', 'MLB4612800415', 'updated', '{"sku": "37206875177", "price": 5499, "title": "Compressor Ar Bmw X5 F15 F85 Xdrive 28i 30d 35i", "status": "paused"}', '2026-04-16 18:28:21.141639+00'), ('79e01a92-3be8-4857-a760-4d3a991276fc', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612811909', '2503596255', 'MLB4612811909', 'updated', '{"sku": "AJDLR036126", "price": 1399, "title": "Bomba Combustivel Lr036126 Land Rover", "status": "paused"}', '2026-04-16 18:28:41.643172+00'), ('8e4fdc7f-54cf-4498-bfbb-317187c04eb9', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631267896', '2503596255', 'MLB6631267896', 'inserted', '{"sku": "B31306792211", "price": 188.62, "title": "Bieleta Dianteira Bmw Serie 3 (f30 F35 F80) 2011...", "status": "paused"}', '2026-04-16 18:47:32.865025+00'), ('5e2807d4-0248-49be-8482-6db8c905f5ef', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631267916', '2503596255', 'MLB6631267916', 'inserted', '{"sku": "B31306792211", "price": 188.62, "title": "Bieleta Dianteira Bmw 328i 2012 2013 2014 2015 2016 2017 F D", "status": "paused"}', '2026-04-16 18:47:35.100083+00'), ('d5bd77be-a8db-4965-868d-c1390c0710d6', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631233712', '2503596255', 'MLB6631233712', 'inserted', '{"sku": null, "price": 1426, "title": "Par Amortecedor Bmw F23 220i 2018 Traseiro", "status": "paused"}', '2026-04-16 18:50:18.555125+00'), ('5a80c628-158e-474b-b50b-583da9b88086', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602267839', '2503596255', NULL, 'error', '{"reason": "token_expired"}', '2026-04-16 21:42:00.762218+00'), ('94df0966-8d22-4190-903d-625214b8a74a', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607749162', '2503596255', 'MLB6607749162', 'updated', '{"sku": "FB11127552281", "price": 2640.91, "title": "Tampa De Válvula Febi Para Bmw 1 3 5 6 7 X1 X3 X5 Z4", "status": "active"}', '2026-04-16 18:00:51.759111+00'), ('71f2213d-4ef9-4218-8cf2-9a2cd888b94c', NULL, 'stock-locations', '/user-products/MLBU3892043921/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "3c94b238-75f4-48c3-9ee7-40025f6ed806", "sent": "2026-04-16T18:01:14.781Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T17:55:51.925Z", "resource": "/user-products/MLBU3892043921/stock", "application_id": 4984880665306039}}', '2026-04-16 18:01:15.195298+00'), ('e98b74ed-b309-4377-b179-c61113aa72b0', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602245263', '2503596255', 'MLB4602245263', 'updated', '{"sku": "2430601", "price": 250.12, "title": "Pastilha Freio Cerâmica Mercedes Classe C E Slk", "status": "active"}', '2026-04-16 18:01:23.333603+00'), ('21eb8170-c9ab-466b-93f9-40bc5d433411', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602238257', '2503596255', 'MLB4602238257', 'updated', '{"sku": "B34216788183", "price": 499.99, "title": "Pastilha Freio Traseira Bmw 6788183", "status": "active"}', '2026-04-16 18:01:28.890884+00'), ('898c0ecd-27bc-4bfb-82c8-2d8dc3e3b77b', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602242093', '2503596255', 'MLB4602242093', 'updated', '{"sku": "B34216788183", "price": 474.99, "title": "Pastilha Freio Traseira Bmw E82 E92", "status": "active"}', '2026-04-16 18:01:30.17625+00'), ('4871c8f4-6509-4389-9a72-e02384c5b91d', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602243393', '2503596255', 'MLB4602243393', 'updated', '{"sku": "B34216788183", "price": 499.99, "title": "Pastilha Freio Traseira Bmw E87 E90 E91", "status": "active"}', '2026-04-16 18:01:31.379972+00'), ('13423179-2f8e-403d-8dbe-70efb37a9552', NULL, 'stock-locations', '/user-products/MLBU3903364082/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "1660bb67-1e1d-48ea-9140-ac126d41a058", "sent": "2026-04-16T18:01:38.751Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T17:55:48.116Z", "resource": "/user-products/MLBU3903364082/stock", "application_id": 4984880665306039}}', '2026-04-16 18:01:39.143602+00'); INSERT INTO "public"."ml_webhook_logs" ("id", "user_id", "topic", "resource", "ml_user_id", "listing_id", "action", "details", "created_at") VALUES ('cf7bd376-563f-4894-a9e2-6d8ee0ccfc3b', NULL, 'stock-locations', '/user-products/MLBU3892016697/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "09b6f0c3-a5fd-4c57-806d-58e27d4fbd66", "sent": "2026-04-16T18:01:50.796Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T17:56:42.212Z", "resource": "/user-products/MLBU3892016697/stock", "application_id": 4984880665306039}}', '2026-04-16 18:01:51.158144+00'), ('2377f1f9-a776-4ef7-ba14-2d2c36d52cac', NULL, 'stock-locations', '/user-products/MLBU3892007891/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "bf4bf109-0fef-4d6c-8efb-c0c09c12a7f0", "sent": "2026-04-16T18:01:59.831Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T17:56:27.181Z", "resource": "/user-products/MLBU3892007891/stock", "application_id": 4984880665306039}}', '2026-04-16 18:02:00.14208+00'), ('7854eea9-3cf8-4e40-a00a-6ebd21ea08f9', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612806935', '2503596255', 'MLB4612806935', 'updated', '{"sku": "B11127588412", "price": 1590, "title": "Tampa De Válvula Bmw X1 2.0 S-drive 12 À 15", "status": "paused"}', '2026-04-16 18:17:23.903936+00'), ('55f0daf3-0c56-425d-9cc4-48fe05a3137c', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612819877', '2503596255', 'MLB4612819877', 'updated', '{"sku": "A2729060060", "price": 648.99, "title": "Bobina Mercedes C280 E350 Cls350 A2729060060 Nova", "status": "paused"}', '2026-04-16 18:17:25.65814+00'), ('b18ec0e5-30d2-4e2d-9d6b-bcf28f973ebc', NULL, 'stock-locations', '/user-products/MLBU3900402513/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "ee7e4484-14ba-4263-9c4c-e74f28e45d1a", "sent": "2026-04-16T18:17:26.135Z", "topic": "stock-locations", "actions": ["field:status", "action:created"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:12:10.79Z", "resource": "/user-products/MLBU3900402513/stock", "application_id": 4984880665306039}}', '2026-04-16 18:17:26.418524+00'), ('0731609e-8d46-41b2-ac1b-dbe08668cc18', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783787', '2503596255', 'MLB4612783787', 'updated', '{"sku": "900126", "price": 250, "title": "Kit Batente Amortecedor Traseiro Bmw X1 E84 2009-2012", "status": "paused"}', '2026-04-16 18:17:26.889039+00'), ('2febd1e1-23b3-4b6f-87eb-3d78b6a173ad', NULL, 'items_prices', '/items/MLB6630989956/prices', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "24a6044f-c822-40a5-8333-99dcd360c42b", "sent": "2026-04-16T18:17:26.925Z", "topic": "items_prices", "actions": [], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:13:19.473Z", "resource": "/items/MLB6630989956/prices", "application_id": 4984880665306039}}', '2026-04-16 18:17:27.287545+00'), ('5dc3a770-2dd0-49e5-b94d-75c2c37c4a6f', NULL, 'items_prices', '/items/MLB6631000622/prices', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "3c63b186-b96f-453c-b50b-17b1a4c22158", "sent": "2026-04-16T18:17:30.805Z", "topic": "items_prices", "actions": [], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:13:17.244Z", "resource": "/items/MLB6631000622/prices", "application_id": 4984880665306039}}', '2026-04-16 18:17:31.280433+00'), ('0cbf5a79-a36e-4135-b96a-25ec883433da', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783549', '2503596255', 'MLB4612783549', 'updated', '{"sku": "46404", "price": 790, "title": "Valvula Termostatica Bmw 320 328 X1 X3 X4 Febi11538635689", "status": "paused"}', '2026-04-16 18:17:32.599371+00'), ('eef43d4c-28df-405c-b42d-4aae71d95ea3', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612795319', '2503596255', 'MLB4612795319', 'updated', '{"sku": "A2045400117", "price": 477.25, "title": " Sensor Abs Dianteiro Mercedes C250 2009 2010 2011 A 2014", "status": "paused"}', '2026-04-16 18:17:37.231445+00'), ('83801119-32c1-44bd-817d-c9b67e0cd9f5', NULL, 'items_prices', '/items/MLB4612800415/prices', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "f1749221-bf92-4b4f-9410-5ebf2566a783", "sent": "2026-04-16T18:29:11.232Z", "topic": "items_prices", "actions": [], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:24:28.708Z", "resource": "/items/MLB4612800415/prices", "application_id": 4984880665306039}}', '2026-04-16 18:29:11.630429+00'), ('f5420576-ff74-417c-ac1b-29d4579afdca', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631267896', '2503596255', 'MLB6631267896', 'inserted', '{"sku": "B31306792211", "price": 188.62, "title": "Bieleta Dianteira Bmw Serie 3 (f30 F35 F80) 2011...", "status": "paused"}', '2026-04-16 18:47:32.990274+00'), ('27658fda-623a-4d56-9ba5-0414862e27cf', NULL, 'stock-locations', '/user-products/MLBU3900487385/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "ed56bb7f-bc21-4d99-935a-0f2919233e92", "sent": "2026-04-16T18:49:41.556Z", "topic": "stock-locations", "actions": ["field:status", "action:created"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:49:41.444Z", "resource": "/user-products/MLBU3900487385/stock", "application_id": 4984880665306039}}', '2026-04-16 18:49:41.850935+00'), ('50d18116-63b1-41fb-adc9-fd9136a7738b', NULL, 'stock-locations', '/user-products/MLBU3911889750/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "0c4e06f4-1ecf-4f4e-b5ae-55e2294a6c15", "sent": "2026-04-16T18:49:42.312Z", "topic": "stock-locations", "actions": ["field:status", "action:created"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:49:42.186Z", "resource": "/user-products/MLBU3911889750/stock", "application_id": 4984880665306039}}', '2026-04-16 18:49:42.6763+00'), ('ef3ad97a-d7e8-4f15-8686-da5d4008d340', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602209113', '2503596255', 'MLB4602209113', 'updated', '{"sku": "FB11127552281", "price": 2800, "title": "Tampa De Válvula Bmw Febi Peça Nova Compatível Diversos", "status": "active"}', '2026-04-16 18:00:51.881887+00'), ('58b9dea5-04cf-4fd7-9343-292a40fc12b2', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607749708', '2503596255', 'MLB6607749708', 'updated', '{"sku": "2430601", "price": 250.12, "title": "Pastilha Freio Mercedes Classe C 2007 A 2014", "status": "active"}', '2026-04-16 18:01:05.550182+00'), ('2f52e716-b493-4169-9101-927a7ac7c9cf', NULL, 'stock-locations', '/user-products/MLBU3892022663/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "5f7b78d5-0240-4e61-8b99-22f232988671", "sent": "2026-04-16T18:01:30.746Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:01:30.628Z", "resource": "/user-products/MLBU3892022663/stock", "application_id": 4984880665306039}}', '2026-04-16 18:01:31.403493+00'), ('96f792e6-45ea-4645-add4-db0adc7c473e', NULL, 'stock-locations', '/user-products/MLBU3903381820/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "f5f0b2f5-8eec-4d8d-b3c2-1558b813cc74", "sent": "2026-04-16T18:01:55.995Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:01:55.954Z", "resource": "/user-products/MLBU3903381820/stock", "application_id": 4984880665306039}}', '2026-04-16 18:01:56.302824+00'), ('1caf6e62-9dab-4095-b865-684a323fa93b', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602248057', '2503596255', 'MLB4602248057', 'updated', '{"sku": "B34216794618", "price": 1300, "title": "Motor Atuador Freio Elétrico Bmw 528 535 640i X3 Z4 F10 F11", "status": "active"}', '2026-04-16 18:02:36.663626+00'), ('3a37cd9c-0638-4de5-9880-6a26cb4ca203', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631000522', '2503596255', 'MLB6631000522', 'updated', '{"sku": "AR2709050600", "price": 445.55, "title": "Sensor Posição Do Virabrequim Mercedes C180 C200 C250 C300", "status": "paused"}', '2026-04-16 18:17:24.946918+00'), ('322e400d-9d3c-48c4-b641-050912c605ba', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989400', '2503596255', 'MLB6630989400', 'updated', '{"sku": "B2701800500", "price": 750, "title": " Trocador Calor Do Motor Mercedes A200 Turbo 2014 2015", "status": "paused"}', '2026-04-16 18:17:25.516756+00'), ('d3658db3-a219-4eff-b70f-8fbb04c71483', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612807033', '2503596255', 'MLB4612807033', 'updated', '{"sku": "A2729060060", "price": 648.99, "title": "Bobina Mercedes M272 V6 A2729060060 0001502780 Nova", "status": "paused"}', '2026-04-16 18:17:26.097915+00'), ('e3f310cd-8063-4b2e-ba23-61e91876308f', NULL, 'user-products-families', '/sites/MLB/user-products-families/1746715360521492', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "dd233a55-a1d4-488d-a6fa-51de0aeb8815", "sent": "2026-04-16T18:17:35.221Z", "topic": "user-products-families", "actions": ["create"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:12:07.652Z", "resource": "/sites/MLB/user-products-families/1746715360521492", "application_id": 4984880665306039}}', '2026-04-16 18:17:35.592574+00'), ('22f3b100-6fc1-4064-83fd-d9f184e4f193', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612794919', '2503596255', 'MLB4612794919', 'updated', '{"sku": "B2701800500", "price": 750, "title": " Trocador Calor Do Motor Mercedes Cla200 Turbo 2017 2018", "status": "paused"}', '2026-04-16 18:17:36.816684+00'), ('11f35b72-592f-4ed2-87cc-17ec2489578c', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612807059', '2503596255', 'MLB4612807059', 'updated', '{"sku": "A2729060060", "price": 612.11, "title": "Bobina A2729060060 Mercedes C280 E350 Cls350 Nova", "status": "paused"}', '2026-04-16 18:29:37.497038+00'), ('34304088-749b-4417-ac9c-b1a08ab17fe0', NULL, 'stock-locations', '/user-products/MLBU3911833358/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "7885d49c-66eb-46ac-933a-8fb05041e4b4", "sent": "2026-04-16T18:29:50.315Z", "topic": "stock-locations", "actions": ["field:status", "action:created"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:24:28.978Z", "resource": "/user-products/MLBU3911833358/stock", "application_id": 4984880665306039}}', '2026-04-16 18:29:50.637886+00'), ('6e9449f7-8936-4f1b-8364-cb708c1e5664', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631267896', '2503596255', 'MLB6631267896', 'updated', '{"sku": "B31306792211", "price": 188.62, "title": "Bieleta Dianteira Bmw Serie 3 (f30 F35 F80) 2011...", "status": "paused"}', '2026-04-16 18:47:33.571634+00'), ('d2e1ca99-3a35-47fc-a846-5e0bffd50aa5', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631233300', '2503596255', 'MLB6631233300', 'inserted', '{"sku": "BLR092060", "price": 189, "title": "Sensor Aviso Desgaste Pastilha Jaguar E-pace X540 Traseiro .", "status": "paused"}', '2026-04-16 18:49:42.066372+00'), ('925b2a7d-5b26-4639-904d-03634682c2a1', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631269166', '2503596255', 'MLB6631269166', 'inserted', '{"sku": "BLR092060", "price": 189, "title": "Sensor Aviso Desgaste Pastilha Range Rover Evoque Traseiro .", "status": "paused"}', '2026-04-16 18:49:44.072604+00'), ('bb6c054c-d68a-42ee-b644-907fd06f29e3', NULL, 'items_prices', '/items/MLB6631209484/prices', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "1d09753a-ee95-4754-832c-d201496ff77f", "sent": "2026-04-16T18:50:05.912Z", "topic": "items_prices", "actions": [], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:50:05.78Z", "resource": "/items/MLB6631209484/prices", "application_id": 4984880665306039}}', '2026-04-16 18:50:06.233722+00'), ('7805bac4-0887-4a43-a216-912ebd7aa6d3', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631258108', '2503596255', 'MLB6631258108', 'inserted', '{"sku": "B2701800500", "price": 820, "title": "Trocador Calor Cla Coupe C117 2017 2018 1.6 Turbo", "status": "paused"}', '2026-04-16 18:50:10.716893+00'), ('469072ca-2cb4-46f2-9afa-5e9dd0a01092', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631257674', '2503596255', 'MLB6631257674', 'updated', '{"sku": null, "price": 1400, "title": "Coxim Do Motor 2007-2014 Mercedes-benz C200 1.8 Série W204", "status": "paused"}', '2026-04-16 18:50:11.051422+00'), ('b21d7097-2490-47a7-a12b-deeed67ba807', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631233694', '2503596255', 'MLB6631233694', 'inserted', '{"sku": "B2701800500", "price": 820, "title": "Trocador Calor Cla Carrinha X117 2017 2018 Turbo", "status": "paused"}', '2026-04-16 18:50:15.187878+00'), ('53667a93-d798-428b-b77c-2525dd34b662', NULL, 'user-products-families', '/sites/MLB/user-products-families/1888059095990866', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "3bf5ad71-4321-4e3f-864a-8d7e9d73dde4", "sent": "2026-04-16T18:50:14.95Z", "topic": "user-products-families", "actions": ["create"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:50:14.874Z", "resource": "/sites/MLB/user-products-families/1888059095990866", "application_id": 4984880665306039}}', '2026-04-16 18:50:15.530853+00'), ('a5eaa499-4356-4064-8338-87c67e402838', NULL, 'user-products-families', '/sites/MLB/user-products-families/4365971755208274', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "6a271da3-58b4-457f-932f-ade0bce98a1a", "sent": "2026-04-16T18:50:16.924Z", "topic": "user-products-families", "actions": ["create"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:50:16.857Z", "resource": "/sites/MLB/user-products-families/4365971755208274", "application_id": 4984880665306039}}', '2026-04-16 18:50:17.396358+00'), ('6feec78b-f103-496e-937d-6d084f13b1da', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631209582', '2503596255', 'MLB6631209582', 'updated', '{"sku": null, "price": 1344.98, "title": "Par Amortecedor Traseiro Bmw Série 2 F23 2018", "status": "paused"}', '2026-04-16 18:50:17.736016+00'), ('0d89ce83-8ef5-43b0-b263-acdacf7171ab', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631269590', '2503596255', 'MLB6631269590', 'inserted', '{"sku": "B2701800500", "price": 820, "title": "Troca Calor Mercedes Classe B W246 W242 2017 2018", "status": "paused"}', '2026-04-16 18:50:18.334129+00'), ('c5b98f29-1fce-4b28-bb98-8958be9bc5c5', NULL, 'post_purchase', '/post-purchase/v1/claims/5494788036', '1723354900', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "9b9176db-fbb0-4c74-a9b6-075d2a2dc645", "sent": "2026-04-16T18:00:55.707Z", "topic": "post_purchase", "actions": ["claims"], "user_id": 1723354900, "attempts": 3, "received": "2026-04-16T17:46:27.112Z", "resource": "/post-purchase/v1/claims/5494788036", "application_id": 4984880665306039}}', '2026-04-16 18:00:56.175678+00'), ('a6e7a262-4913-4cd4-9174-ba3407efacc1', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602223579', '2503596255', 'MLB4602223579', 'updated', '{"sku": "2430601", "price": 235.91, "title": "Pastilha De Freio Dianteira Mercedes Classe C W204", "status": "active"}', '2026-04-16 18:00:58.618292+00'), ('206fff6c-93fc-4a23-82f3-f6b7d162916f', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602241731', '2503596255', 'MLB4602241731', 'updated', '{"sku": "B34216788183", "price": 499.99, "title": "Jogo Pastilha Freio Traseira Bmw Série 1 E Série 3", "status": "active"}', '2026-04-16 18:01:31.351815+00'), ('047364e0-9a4a-4e83-9526-f6de9054455f', NULL, 'stock-locations', '/user-products/MLBU3892028497/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "5de6dd1d-0deb-4212-9e85-1f10ff8c6f87", "sent": "2026-04-16T18:02:14.937Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T17:56:27.033Z", "resource": "/user-products/MLBU3892028497/stock", "application_id": 4984880665306039}}', '2026-04-16 18:02:15.276693+00'), ('f437983c-1ed0-4d60-bcd4-43211cec3d3e', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607748938', '2503596255', 'MLB6607748938', 'updated', '{"sku": "B34216794618", "price": 1235.3, "title": "Servo Atuador Motor Pinça Freio Bmw X3 X4 528 530 550 650", "status": "active"}', '2026-04-16 18:02:36.468407+00'), ('2fc87a61-0a6a-4a1e-9e25-e785fc512ad3', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612806817', '2503596255', 'MLB4612806817', 'updated', '{"sku": null, "price": 923, "title": "Amortecedor Dianteiro Mercedes Clc200 2008 2009 2010 2011", "status": "paused"}', '2026-04-16 18:17:27.368345+00'), ('2097f004-f942-48f8-acb2-bb8e5a7528f6', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612806935', '2503596255', 'MLB4612806935', 'updated', '{"sku": "B11127588412", "price": 1590, "title": "Tampa De Válvula Bmw X1 2.0 S-drive 12 À 15", "status": "paused"}', '2026-04-16 18:17:30.227913+00'), ('1e15513f-ae32-43bd-8cd1-7fb1af9c090a', NULL, 'stock-locations', '/user-products/MLBU3900402801/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "fe890133-878d-4cd3-8a14-85590b18eb75", "sent": "2026-04-16T18:17:35.222Z", "topic": "stock-locations", "actions": ["field:status", "action:created"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:12:25.356Z", "resource": "/user-products/MLBU3900402801/stock", "application_id": 4984880665306039}}', '2026-04-16 18:17:35.486678+00'), ('943c11e7-40ef-4333-a648-53841bd7cc42', NULL, 'items_prices', '/items/MLB6630989950/prices', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "812df14e-973e-4449-8c3e-1200bb26f11e", "sent": "2026-04-16T18:17:37.939Z", "topic": "items_prices", "actions": [], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:13:18.328Z", "resource": "/items/MLB6630989950/prices", "application_id": 4984880665306039}}', '2026-04-16 18:17:38.242263+00'), ('85257c17-8cca-458d-a914-19d43df8cbdf', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612795031', '2503596255', 'MLB4612795031', 'updated', '{"sku": "B31306863135", "price": 380, "title": " Coxim Batente Amortecedor Diant Bmw 116i 118i 120i 125i F2", "status": "paused"}', '2026-04-16 18:17:38.945178+00'), ('39670ad9-040b-4b96-b01d-8be3f4f06438', NULL, 'stock-locations', '/user-products/MLBU3911834722/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "aec89fbf-d642-4d1c-9109-b56713f9518d", "sent": "2026-04-16T18:29:45.354Z", "topic": "stock-locations", "actions": ["field:status", "action:created"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:24:16.208Z", "resource": "/user-products/MLBU3911834722/stock", "application_id": 4984880665306039}}', '2026-04-16 18:29:45.820679+00'), ('a8b83111-b416-4402-914f-3b196430ffa5', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783355', '2503596255', 'MLB4612783355', 'updated', '{"sku": "TM97103", "price": 1050, "title": " Carcaça Válvula Termostato P/ Mercedes C180 C205 2015", "status": "paused"}', '2026-04-16 18:30:31.114927+00'), ('d4d681a0-14e5-4110-a340-d09a2f002c16', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783355', '2503596255', 'MLB4612783355', 'updated', '{"sku": "TM97103", "price": 1050, "title": " Carcaça Válvula Termostato P/ Mercedes C180 C205 2015", "status": "paused"}', '2026-04-16 18:30:55.612025+00'); INSERT INTO "public"."ml_webhook_logs" ("id", "user_id", "topic", "resource", "ml_user_id", "listing_id", "action", "details", "created_at") VALUES ('e3420c7e-6a6b-451b-aff3-2fe3f26a415c', NULL, 'user-products-families', '/sites/MLB/user-products-families/486320796185874', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "1c19cedc-28ad-47b2-ac0d-17edf1611aa5", "sent": "2026-04-16T18:47:33.348Z", "topic": "user-products-families", "actions": ["create"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:47:33.199Z", "resource": "/sites/MLB/user-products-families/486320796185874", "application_id": 4984880665306039}}', '2026-04-16 18:47:33.769531+00'), ('a6d65313-39dc-4064-a8e1-9dc0c0b6fd18', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631267916', '2503596255', 'MLB6631267916', 'updated', '{"sku": "B31306792211", "price": 188.62, "title": "Bieleta Dianteira Bmw 328i 2012 2013 2014 2015 2016 2017 F D", "status": "paused"}', '2026-04-16 18:47:36.93688+00'), ('778d2aac-6e5c-4c2b-9224-17ac7568bcb3', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631233300', '2503596255', 'MLB6631233300', 'inserted', '{"sku": "BLR092060", "price": 189, "title": "Sensor Aviso Desgaste Pastilha Jaguar E-pace X540 Traseiro .", "status": "paused"}', '2026-04-16 18:49:42.092805+00'), ('fd21a960-1554-472c-805f-9ae8391df6c3', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631257796', '2503596255', 'MLB6631257796', 'updated', '{"sku": "BLR092060", "price": 180, "title": "Sensor De Desgaste Pastilha Freio Traseiro Jaguar E-pace 17+", "status": "paused"}', '2026-04-16 18:49:43.826162+00'), ('69885d32-a743-451f-9572-db4435d27d26', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631257806', '2503596255', 'MLB6631257806', 'updated', '{"sku": "B17137609469", "price": 691, "title": "Tanque Expansão Arrefecimento Bmtsr Bmw Série 3 Peça Nova Gt", "status": "paused"}', '2026-04-16 18:49:44.403519+00'), ('1609fa0e-5694-4ee4-aef6-f802e37aaff3', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631209484', '2503596255', 'MLB6631209484', 'inserted', '{"sku": "B12138616153", "price": 339.55, "title": "Bobina Ignição Bmtsr Bmw Série 3 E46 E90 F30 Z3 Z4 X3", "status": "paused"}', '2026-04-16 18:50:06.294857+00'), ('318453a7-0cca-487b-bdfb-53964a8674bb', NULL, 'stock-locations', '/user-products/MLBU3900488411/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "c0160724-772f-43d6-a988-a4b25172af70", "sent": "2026-04-16T18:50:09.5Z", "topic": "stock-locations", "actions": ["field:status", "action:created"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:50:09.369Z", "resource": "/user-products/MLBU3900488411/stock", "application_id": 4984880665306039}}', '2026-04-16 18:50:10.069816+00'), ('8ad58ae0-71ca-439a-b7d7-bc2196868abc', NULL, 'items_prices', '/items/MLB6631258102/prices', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "6cfdcaf8-fb35-4771-9458-06cc3df15dfb", "sent": "2026-04-16T18:50:09.857Z", "topic": "items_prices", "actions": [], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:50:09.804Z", "resource": "/items/MLB6631258102/prices", "application_id": 4984880665306039}}', '2026-04-16 18:50:10.726208+00'), ('5d5be302-81ae-48e3-9a95-4d774aafa2fd', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631258180', '2503596255', 'MLB6631258180', 'inserted', '{"sku": null, "price": 1426, "title": "Par Amortecedor Traseiro Bmw 220i Coupe F23 2018", "status": "paused"}', '2026-04-16 18:50:15.784399+00'), ('20505f8d-e5b1-4825-b86d-b91d0a2df6a5', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602222657', '2503596255', NULL, 'error', '{"reason": "token_expired"}', '2026-04-16 21:42:00.82894+00'), ('cafb7386-f967-47fe-a938-d72d0c04e425', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602227609', '2503596255', 'MLB4602227609', 'updated', '{"sku": "34106883510", "price": 999.99, "title": "Pastilha Freio Dianteira Bmw X5 G05", "status": "active"}', '2026-04-16 18:00:59.541342+00'), ('1ae74ff6-c6f5-42c5-98cb-109625b564c6', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602239945', '2503596255', 'MLB4602239945', 'updated', '{"sku": "B34216788183", "price": 499.99, "title": "Jogo Pastilha Freio Traseira Bmw 34216767145", "status": "active"}', '2026-04-16 18:01:27.575739+00'), ('7c45e7c5-5684-4847-b163-dfb53a4c6b5d', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602228193', '2503596255', 'MLB4602228193', 'updated', '{"sku": "B34216788183", "price": 499.99, "title": "Jogo Pastilha Freio Traseira Bmw Série 1 E81 E82", "status": "active"}', '2026-04-16 18:01:28.569389+00'), ('a77fb998-6f79-4682-8684-e3e99a70e441', NULL, 'user-products-families', '/sites/MLB/user-products-families/1413319957922961', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "0d15aa1e-52f6-499e-b554-05465a9f8be8", "sent": "2026-04-16T18:17:27.104Z", "topic": "user-products-families", "actions": ["create"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:12:18.79Z", "resource": "/sites/MLB/user-products-families/1413319957922961", "application_id": 4984880665306039}}', '2026-04-16 18:17:27.414063+00'), ('1e87a29b-5679-4c68-877c-f19e7c44369a', NULL, 'items_prices', '/items/MLB4612819699/prices', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "9334fbdc-24bf-4019-ad29-4fb461146d58", "sent": "2026-04-16T18:17:28.846Z", "topic": "items_prices", "actions": [], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:13:00.744Z", "resource": "/items/MLB4612819699/prices", "application_id": 4984880665306039}}', '2026-04-16 18:17:29.138729+00'), ('abe7aa35-1c9c-4f24-a6ba-7c376da35996', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989536', '2503596255', 'MLB6630989536', 'updated', '{"sku": null, "price": 451.78, "title": " Coxim Do Amortecedor Dianteiro Bmw 320i 330i 330e G20 2019", "status": "paused"}', '2026-04-16 18:17:31.927236+00'), ('369f87ad-d77e-4085-a5ab-c1b22d3e3383', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783931', '2503596255', 'MLB4612783931', 'updated', '{"sku": "B31316851747PAR", "price": 1413.83, "title": "Par Amortecedor Bmtsr Bmw X5 3.0 F15 6851747/6851745", "status": "paused"}', '2026-04-16 18:29:49.007643+00'), ('bceaae69-fc48-4823-8dd2-7a0c6a907dd6', NULL, 'stock-locations', '/user-products/MLBU3900482663/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "b919e366-d342-4134-aa65-b0a5b0d09e74", "sent": "2026-04-16T18:47:34.913Z", "topic": "stock-locations", "actions": ["field:status", "action:created"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:47:34.866Z", "resource": "/user-products/MLBU3900482663/stock", "application_id": 4984880665306039}}', '2026-04-16 18:47:35.336383+00'), ('13212676-b382-48f5-a430-7db96be5a126', NULL, 'items_prices', '/items/MLB6631267916/prices', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "8d0def80-39ee-4e35-94d6-9fb506fb9120", "sent": "2026-04-16T18:47:35.665Z", "topic": "items_prices", "actions": [], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:47:35.629Z", "resource": "/items/MLB6631267916/prices", "application_id": 4984880665306039}}', '2026-04-16 18:47:36.629017+00'), ('71b3395c-d947-44a4-adb3-4144aa23b23e', NULL, 'stock-locations', '/user-products/MLBU3911891440/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "3fd4a947-94a6-4138-9a98-50312051e6e2", "sent": "2026-04-16T18:49:41.949Z", "topic": "stock-locations", "actions": ["field:status", "action:created"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:49:41.818Z", "resource": "/user-products/MLBU3911891440/stock", "application_id": 4984880665306039}}', '2026-04-16 18:49:42.246431+00'), ('80907b42-80c7-4a1c-ba37-79bc3864752a', NULL, 'items_prices', '/items/MLB6631269166/prices', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "2a0e8792-3bf1-4ac5-8d31-48d1d2bd90b5", "sent": "2026-04-16T18:49:43.815Z", "topic": "items_prices", "actions": [], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:49:43.746Z", "resource": "/items/MLB6631269166/prices", "application_id": 4984880665306039}}', '2026-04-16 18:49:44.23725+00'), ('b61d980e-259d-4adc-8744-13fbcb2972ff', NULL, 'user-products-families', '/sites/MLB/user-products-families/8240959261087503', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "8a06e11e-80b4-4db4-9585-855e3c3bc87f", "sent": "2026-04-16T18:50:07.535Z", "topic": "user-products-families", "actions": ["create"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:50:07.495Z", "resource": "/sites/MLB/user-products-families/8240959261087503", "application_id": 4984880665306039}}', '2026-04-16 18:50:07.814223+00'), ('e8b54745-4b11-40a0-8641-5b9dab3b7775', NULL, 'user-products-families', '/sites/MLB/user-products-families/5706940268497810', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "ba2287a4-f78f-4930-8732-c10fefac8d6f", "sent": "2026-04-16T18:50:09.809Z", "topic": "user-products-families", "actions": ["create"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:50:09.695Z", "resource": "/sites/MLB/user-products-families/5706940268497810", "application_id": 4984880665306039}}', '2026-04-16 18:50:10.685618+00'), ('a1a3d605-6206-4031-8c19-454293a65e74', NULL, 'items_prices', '/items/MLB6631258108/prices', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "e25f860a-21df-41fd-b03c-f0d3367391a0", "sent": "2026-04-16T18:50:11.125Z", "topic": "items_prices", "actions": [], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:50:10.998Z", "resource": "/items/MLB6631258108/prices", "application_id": 4984880665306039}}', '2026-04-16 18:50:11.491136+00'), ('1348a8bb-99c8-48c3-b561-5954602b56c1', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631209558', '2503596255', 'MLB6631209558', 'updated', '{"sku": "B2701800500", "price": 820, "title": "Trocador Calor A2701800810 Cla200 2017 2018 Turbo", "status": "paused"}', '2026-04-16 18:50:13.400239+00'), ('8e5085a0-f391-497c-a240-55a4cc561e67', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631209582', '2503596255', 'MLB6631209582', 'inserted', '{"sku": null, "price": 1344.98, "title": "Par Amortecedor Traseiro Bmw Série 2 F23 2018", "status": "paused"}', '2026-04-16 18:50:14.08728+00'), ('2fbe0a7c-474e-4646-ab6f-01c854f8966a', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631233694', '2503596255', 'MLB6631233694', 'updated', '{"sku": "B2701800500", "price": 820, "title": "Trocador Calor Cla Carrinha X117 2017 2018 Turbo", "status": "paused"}', '2026-04-16 18:50:15.469912+00'), ('4196e8c2-3b04-48bf-9d99-006b19e17a82', NULL, 'items_prices', '/items/MLB6631258180/prices', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "712b5a3f-d6c7-434c-a524-98e4c7ebef9b", "sent": "2026-04-16T18:50:15.356Z", "topic": "items_prices", "actions": [], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:50:15.217Z", "resource": "/items/MLB6631258180/prices", "application_id": 4984880665306039}}', '2026-04-16 18:50:15.788662+00'), ('8734654d-66ef-4737-968a-5d633ab10d89', NULL, 'stock-locations', '/user-products/MLBU3911892338/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "ce3b2671-8d79-42fd-ad88-a7b58b44cbe5", "sent": "2026-04-16T18:50:16.068Z", "topic": "stock-locations", "actions": ["field:status", "action:created"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:50:15.959Z", "resource": "/user-products/MLBU3911892338/stock", "application_id": 4984880665306039}}', '2026-04-16 18:50:16.465269+00'), ('c13f9812-416e-44a6-8a95-b83a98d5ad45', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631233712', '2503596255', 'MLB6631233712', 'updated', '{"sku": null, "price": 1426, "title": "Par Amortecedor Bmw F23 220i 2018 Traseiro", "status": "paused"}', '2026-04-16 18:50:19.109053+00'), ('c6a7c38f-1edd-43e8-a253-1b42236489f6', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607699478', '2503596255', 'MLB6607699478', 'updated', '{"sku": "2430601", "price": 235.91, "title": "Pastilha Freio Dianteira Cerâmica Mercedes Classe C", "status": "active"}', '2026-04-16 18:01:06.554616+00'), ('5c8ec858-e7b7-4837-a9fb-ea79c842da2c', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607747924', '2503596255', 'MLB6607747924', 'updated', '{"sku": "2430601", "price": 235.91, "title": "Pastilha De Freio Mercedes Textar A0074209220", "status": "active"}', '2026-04-16 18:01:16.545616+00'), ('2a656f60-7a1c-4205-beeb-cfc15c6b4684', NULL, 'stock-locations', '/user-products/MLBU3892017713/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "b9d1653b-980c-428b-87f7-d5a237813672", "sent": "2026-04-16T18:01:27.227Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:01:27.117Z", "resource": "/user-products/MLBU3892017713/stock", "application_id": 4984880665306039}}', '2026-04-16 18:01:27.635361+00'), ('2d108adb-94f5-447a-9f0a-974b1ef3eecc', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607725592', '2503596255', 'MLB6607725592', 'updated', '{"sku": "B34216788183", "price": 499.99, "title": "Pastilha Freio Traseira Bmw 34216767146", "status": "active"}', '2026-04-16 18:01:30.843689+00'), ('ebe53779-fa17-4b49-b79c-09aeb1706488', NULL, 'stock-locations', '/user-products/MLBU3903353508/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "fab11f5f-ccf7-44fa-b710-98cf7e6e6f61", "sent": "2026-04-16T18:01:30.856Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:01:30.664Z", "resource": "/user-products/MLBU3903353508/stock", "application_id": 4984880665306039}}', '2026-04-16 18:01:31.245022+00'), ('c002fb2b-5021-4a3e-9e19-d254092a8927', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607736770', '2503596255', 'MLB6607736770', 'updated', '{"sku": "B34216788183", "price": 474.99, "title": "Jogo Pastilha Freio Traseira Bmw Série 3 E90 E91", "status": "active"}', '2026-04-16 18:01:32.516774+00'), ('2903addb-4796-459e-bf1a-eba409db222c', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6589171256', '2503596255', 'MLB6589171256', 'updated', '{"sku": "34206888825", "price": 630, "title": "Pastilha De Freio Traseira Bmw 220i 230i G42 2022 2023", "status": "active"}', '2026-04-16 18:02:49.496902+00'), ('e16f9a49-03a6-48e5-909f-162507dce534', NULL, 'price_suggestion', '/marketplace/benchmarks/items/MLB6413191762/details', '1723354900', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "b30bfb4d-ab31-4362-af5d-5f0929acc63f", "sent": "2026-04-16T18:03:27.485Z", "topic": "price_suggestion", "actions": ["price_suggestion"], "user_id": 1723354900, "attempts": 4, "received": "2026-04-16T17:41:56.219Z", "resource": "/marketplace/benchmarks/items/MLB6413191762/details", "application_id": 4984880665306039}}', '2026-04-16 18:03:29.023309+00'), ('0acb9b1f-66fd-40da-a2c4-fd491f510f11', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607744210', '2503596255', 'MLB6607744210', 'updated', '{"sku": "B34116850568", "price": 211, "title": "Pastilha Freio Dianteira Bmw F30 320i 2013 A 2018", "status": "active"}', '2026-04-16 18:03:59.588314+00'), ('e9851e9a-3ca3-453a-9082-8e1ece9f72c0', NULL, 'stock-locations', '/user-products/MLBU3903384572/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "0d388a2d-5eb7-4a74-a4ab-4a07cbe6675f", "sent": "2026-04-16T18:04:00.054Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 1, "received": "2026-04-16T18:03:59.988Z", "resource": "/user-products/MLBU3903384572/stock", "application_id": 4984880665306039}}', '2026-04-16 18:04:00.800715+00'), ('8ef7129f-0204-4efd-91e9-bda63fecaa44', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602238873', '2503596255', 'MLB4602238873', 'updated', '{"sku": "B34216850569", "price": 420, "title": "Jogo Pastilha Freio Traseira Bmw 34206799809", "status": "active"}', '2026-04-16 18:04:42.094269+00'), ('88ffb2bf-5450-41d0-9043-876277bd0f3a', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602230809', '2503596255', 'MLB4602230809', 'updated', '{"sku": "B34216850569", "price": 420, "title": "Jogo Pastilha Freio Traseira Bmw F30 F80", "status": "active"}', '2026-04-16 18:04:45.225599+00'), ('27af54b6-5b12-451a-9c91-f42aec279d91', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602239227', '2503596255', 'MLB4602239227', 'updated', '{"sku": "B34216850569", "price": 420, "title": "Jogo Pastilha Freio Traseira Bmw Série 3 F30 320i", "status": "active"}', '2026-04-16 18:04:47.770761+00'), ('b3bef1e8-b483-45ab-8c47-2bc9bfe72369', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602224287', '2503596255', 'MLB4602224287', 'updated', '{"sku": "B34216850569", "price": 399, "title": "Pastilha Freio Traseira Bmw 34206873094", "status": "active"}', '2026-04-16 18:04:51.004995+00'), ('3fe6c1b1-2bb3-42e1-b557-42877e493282', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607758142', '2503596255', 'MLB6607758142', 'updated', '{"sku": "B1643200130-KIT", "price": 2199, "title": "Par Amortecedor Dianteiro Mercedes Ml320 Ml350 Ml500 06/11", "status": "active"}', '2026-04-16 18:04:52.900511+00'), ('5767924d-a0b7-46b0-91c9-ccc6ad658090', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602239423', '2503596255', 'MLB4602239423', 'updated', '{"sku": "B34216850569", "price": 420, "title": "Jogo Pastilha Freio Traseira Bmw 34212468436", "status": "active"}', '2026-04-16 18:04:53.037378+00'), ('d6b1a430-1e88-4d6d-b197-f492c88d7b68', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602225403', '2503596255', 'MLB4602225403', 'updated', '{"sku": "FB11127552281", "price": 2640.91, "title": "Tampa De Válvula Febi Original Compatível Com Bmw Z4", "status": "active"}', '2026-04-16 18:04:57.051908+00'), ('f7142619-f0d7-4e22-bc8f-b8654912dde5', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602220847', '2503596255', 'MLB4602220847', 'updated', '{"sku": "B34216850569", "price": 420, "title": "Jogo Pastilha Freio Traseira Bmw 320i F30", "status": "active"}', '2026-04-16 18:04:57.916827+00'), ('4f75e08f-1d8d-4e1e-8738-9b053a8a67db', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602225259', '2503596255', 'MLB4602225259', 'updated', '{"sku": "B34216850569", "price": 399, "title": "Pastilha Freio Traseira Bmw 34212464312", "status": "active"}', '2026-04-16 18:04:59.800344+00'), ('f3ed1483-ac86-4c48-be52-4298b5d1dd5b', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602209113', '2503596255', 'MLB4602209113', 'updated', '{"sku": "FB11127552281", "price": 2800, "title": "Tampa De Válvula Bmw Febi Peça Nova Compatível Diversos", "status": "active"}', '2026-04-16 18:05:08.980095+00'); INSERT INTO "public"."ml_webhook_logs" ("id", "user_id", "topic", "resource", "ml_user_id", "listing_id", "action", "details", "created_at") VALUES ('7bfd2b44-75ae-4ec4-bbe8-2bfaf2360671', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602202049', '2503596255', 'MLB4602202049', 'updated', '{"sku": "B34216850569", "price": 420, "title": "Pastilha Freio Traseira Bmw Série 3 2013 A 2018", "status": "active"}', '2026-04-16 18:05:13.826182+00'), ('add1a454-e43a-43d2-a837-c86e263417fd', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607749162', '2503596255', 'MLB6607749162', 'updated', '{"sku": "FB11127552281", "price": 2640.91, "title": "Tampa De Válvula Febi Para Bmw 1 3 5 6 7 X1 X3 X5 Z4", "status": "active"}', '2026-04-16 18:05:15.869403+00'), ('da457bb1-a924-4572-ab1f-8bd21927b9e8', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602228439', '2503596255', 'MLB4602228439', 'updated', '{"sku": "FB11127552281", "price": 2800, "title": "Tampa De Válvula Bmw Linha E60 E90 E70 E63 Marca Febi", "status": "active"}', '2026-04-16 18:05:27.760823+00'), ('29194412-898a-4554-b6f3-07ccafd23a8f', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602243141', '2503596255', 'MLB4602243141', 'updated', '{"sku": "B34216850569", "price": 420, "title": "Pastilha Freio Traseira Bmw 320i F30 2013 A 2018", "status": "active"}', '2026-04-16 18:05:27.870238+00'), ('814be27c-6a63-44e0-aa85-b3f393bb7cf6', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602209993', '2503596255', 'MLB4602209993', 'updated', '{"sku": "FB11127552281", "price": 2640.91, "title": "Tampa De Válvula Bmw Série 3 E90 Febi Original 90 Dias", "status": "active"}', '2026-04-16 18:05:27.932363+00'), ('d163df22-717b-439c-b852-f766bba6afce', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607738012', '2503596255', 'MLB6607738012', 'updated', '{"sku": "FB11127552281", "price": 2640.91, "title": "Tampa De Válvula Bmw Febi Peça Nova Compatível Diversos", "status": "active"}', '2026-04-16 18:05:27.956762+00'), ('f5d041b7-95df-4cda-9c3d-9f3336f557d6', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602270215', '2503596255', NULL, 'error', '{"reason": "token_expired"}', '2026-04-16 21:42:08.277426+00'), ('3d1a0a25-e455-40d0-af20-9baa205de2f9', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602228889', '2503596255', 'MLB4602228889', 'updated', '{"sku": "FB11127552281", "price": 2800, "title": "Tampa De Válvula Febi Original Compatível Com Bmw Z4", "status": "active"}', '2026-04-16 18:05:34.0248+00'), ('c8743d7c-fe67-4f2a-bf1e-a2b067e62cce', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602239945', '2503596255', 'MLB4602239945', 'updated', '{"sku": "B34216788183", "price": 499.99, "title": "Jogo Pastilha Freio Traseira Bmw 34216767145", "status": "active"}', '2026-04-16 18:05:42.834032+00'), ('a982dbd1-03ce-4fb7-a757-18f46a05d436', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602243393', '2503596255', 'MLB4602243393', 'updated', '{"sku": "B34216788183", "price": 499.99, "title": "Pastilha Freio Traseira Bmw E87 E90 E91", "status": "active"}', '2026-04-16 18:06:01.876961+00'), ('63c9632e-906c-45e0-b367-61e885532fb8', NULL, 'stock-locations', '/user-products/MLBU3903354190/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "48621c6e-5fcf-4269-9049-9673f0bec19e", "sent": "2026-04-16T18:06:07.022Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:00:38.149Z", "resource": "/user-products/MLBU3903354190/stock", "application_id": 4984880665306039}}', '2026-04-16 18:06:07.417046+00'), ('fadb701c-a106-46d5-a621-b7df7bed82a3', NULL, 'stock-locations', '/user-products/MLBU3903345794/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "71dbe3fd-5482-4ea4-849a-21e02b3f85b0", "sent": "2026-04-16T18:06:14.92Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:00:47.917Z", "resource": "/user-products/MLBU3903345794/stock", "application_id": 4984880665306039}}', '2026-04-16 18:06:15.327051+00'), ('5e409333-86dc-4085-8c16-31d69f1c5b47', NULL, 'stock-locations', '/user-products/MLBU3903349054/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "c0c56c64-9728-4f81-97dc-e9b0cc2a2bcf", "sent": "2026-04-16T18:06:19.286Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:00:36.84Z", "resource": "/user-products/MLBU3903349054/stock", "application_id": 4984880665306039}}', '2026-04-16 18:06:25.081055+00'), ('fb2e3922-4d93-4b4a-9ae0-6ef19c64a589', NULL, 'stock-locations', '/user-products/MLBU3903354646/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "3f186c62-8c05-41f2-86b6-987a7f42fff2", "sent": "2026-04-16T18:06:27.186Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:00:38.711Z", "resource": "/user-products/MLBU3903354646/stock", "application_id": 4984880665306039}}', '2026-04-16 18:06:27.575793+00'), ('21e8e10f-e7c6-4493-8511-4189df4a98f3', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602248057', '2503596255', 'MLB4602248057', 'updated', '{"sku": "B34216794618", "price": 1300, "title": "Motor Atuador Freio Elétrico Bmw 528 535 640i X3 Z4 F10 F11", "status": "active"}', '2026-04-16 18:06:45.38293+00'), ('dbdf54bc-8af2-40ce-b495-8dba4da54f14', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607748842', '2503596255', 'MLB6607748842', 'updated', '{"sku": "2430601", "price": 250.12, "title": "Jogo Pastilha Freio Dianteiro Mercedes C180 C200", "status": "active"}', '2026-04-16 18:07:25.365644+00'), ('6ca69f85-77f2-4f61-b783-22501f3d3c59', NULL, 'items_prices', '/items/MLB4612795319/prices', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "43062a63-0b75-4bb6-948f-12bdc188ef11", "sent": "2026-04-16T18:17:40.76Z", "topic": "items_prices", "actions": [], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:13:07.609Z", "resource": "/items/MLB4612795319/prices", "application_id": 4984880665306039}}', '2026-04-16 18:17:41.207129+00'), ('59976c18-1123-4864-95e5-3e02df8e5f13', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612819827', '2503596255', 'MLB4612819827', 'updated', '{"sku": "B11127552281", "price": 2075, "title": "Tampa Válvula Bmw N52 Bmtsr Série 3 5 6 11127582245", "status": "paused"}', '2026-04-16 18:17:46.312263+00'), ('d17c8a1a-1411-404e-a706-9d20d0b05ca7', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989842', '2503596255', 'MLB6630989842', 'updated', '{"sku": "B1643202431PAR", "price": 2690, "title": " Amortecedor Traseiro Mercedes Ml350 W164 2005 À 2013", "status": "paused"}', '2026-04-16 18:17:46.83879+00'), ('41870f9e-a1fd-479a-b9ed-5890e39862a3', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6589893142', '2503596255', 'MLB6589893142', 'updated', '{"sku": "B11377603979", "price": 1660, "title": "Atuador Valvetronic Bmtsr Compatível C/ Bmw X3 F25", "status": "under_review"}', '2026-04-16 18:17:47.019767+00'), ('c05fede0-9575-4d9d-ba75-7eca70c4a176', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631000920', '2503596255', 'MLB6631000920', 'updated', '{"sku": "B17137609469", "price": 691, "title": "Reservatório Água Motor Bmtsr Bmw F33 2013-2020 Peça Nova Gt", "status": "paused"}', '2026-04-16 18:17:47.227259+00'), ('1e5e2168-ec8b-4ad6-ad10-23f0ab3655fc', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6589911122', '2503596255', 'MLB6589911122', 'updated', '{"sku": "B11377603979", "price": 1660, "title": "Atuador Valvetronic Bmtsr P/ Bmw Série 5 Gt F07", "status": "under_review"}', '2026-04-16 18:17:49.808784+00'), ('86a53600-3611-4991-bc8c-17c9b8165800', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612806775', '2503596255', 'MLB4612806775', 'updated', '{"sku": "AR2709050600", "price": 469, "title": "Sensor Rotação Virabrequim Mercedes Cla250 2013 À 2018 C117", "status": "paused"}', '2026-04-16 18:17:50.127556+00'), ('a59b9abe-fcfc-4fc5-8bcb-58c0ed8b802e', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612795381', '2503596255', 'MLB4612795381', 'updated', '{"sku": "B22118743621", "price": 590, "title": "Coxim Direito Motor Bmw X1 F48 2015 2016 2017 2018 2019", "status": "paused"}', '2026-04-16 18:17:50.440899+00'), ('1e042a04-a0c9-4ce3-98de-49b98a36f19e', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989596', '2503596255', 'MLB6630989596', 'updated', '{"sku": null, "price": 1390, "title": "Válvula Termostática Mercedes C180 C200 C250 W205 2015 2016", "status": "paused"}', '2026-04-16 18:17:50.984576+00'), ('b7f3335a-256b-4629-ab51-8d69ca5b8d17', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631000864', '2503596255', 'MLB6631000864', 'updated', '{"sku": "B12138616153", "price": 360, "title": "Bobina Injeção Bmw Bmtsr Série 3 5 6 7 X1 X3 X5 X6", "status": "paused"}', '2026-04-16 18:17:52.366726+00'), ('1e19991d-69a0-44f2-9619-242334396b73', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612819877', '2503596255', 'MLB4612819877', 'updated', '{"sku": "A2729060060", "price": 648.99, "title": "Bobina Mercedes C280 E350 Cls350 A2729060060 Nova", "status": "paused"}', '2026-04-16 18:17:53.534978+00'), ('08a910ce-6d40-4362-8ba3-64d367ba0e7e', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783839', '2503596255', 'MLB4612783839', 'updated', '{"sku": "A2043200131", "price": 2405.11, "title": "Aumente A Segurança: Amortecedor Traseiro Para Mercedes-benz", "status": "paused"}', '2026-04-16 18:17:57.430687+00'), ('46905b77-3c90-423f-b9a4-9f9cfeede6a4', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783665', '2503596255', 'MLB4612783665', 'updated', '{"sku": "B2044700894", "price": 1339, "title": "Bomba Combustível Mercedes E250 Cgi 1.8 W212 2010", "status": "paused"}', '2026-04-16 18:17:58.925935+00'), ('1599f409-e1ae-4e05-a5d1-d20a56e869b4', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989764', '2503596255', 'MLB6630989764', 'updated', '{"sku": "AR2702031882", "price": 169, "title": "Mangueira Água Radiador A200 250 B200 Cla Gla - A2702031882", "status": "paused"}', '2026-04-16 18:17:59.828752+00'), ('8c539e7a-7de6-4b9f-9ad2-1a1fb5939573', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783425', '2503596255', 'MLB4612783425', 'updated', '{"sku": "47324", "price": 380, "title": "Coxim Amortecedor Mercedes A200 B200 Cla200 2016 2017 2018", "status": "paused"}', '2026-04-16 18:18:03.399588+00'), ('dac4bd76-8e7c-4fd2-9921-0a40244facda', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989910', '2503596255', 'MLB6630989910', 'updated', '{"sku": "B31316851747PAR", "price": 1413.83, "title": "Amortecedor Dianteiro Para X5 3.0 24v 2012 À 2018", "status": "paused"}', '2026-04-16 18:18:07.032227+00'), ('ecd2dd73-02e0-4b3f-9ba9-08cb98cd8243', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607725592', '2503596255', 'MLB6607725592', 'updated', '{"sku": "B34216788183", "price": 499.99, "title": "Pastilha Freio Traseira Bmw 34216767146", "status": "active"}', '2026-04-16 18:05:39.013172+00'), ('82e48807-f971-4a6e-aef9-376cd2326e02', NULL, 'stock-locations', '/user-products/MLBU3903344206/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "f0932190-a3d7-4227-b91f-4d07290bf837", "sent": "2026-04-16T18:05:42.164Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:00:39.264Z", "resource": "/user-products/MLBU3903344206/stock", "application_id": 4984880665306039}}', '2026-04-16 18:05:42.541444+00'), ('c5fc3bbd-8374-4bff-b7bc-fc63e1422ae9', NULL, 'stock-locations', '/user-products/MLBU3892024345/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "efc7e1ae-62af-4aed-a990-2a6800144379", "sent": "2026-04-16T18:05:46.397Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:00:39.928Z", "resource": "/user-products/MLBU3892024345/stock", "application_id": 4984880665306039}}', '2026-04-16 18:05:46.731328+00'), ('34ecf893-56e8-4418-aea8-4bb0bb2f9c76', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602238257', '2503596255', 'MLB4602238257', 'updated', '{"sku": "B34216788183", "price": 499.99, "title": "Pastilha Freio Traseira Bmw 6788183", "status": "active"}', '2026-04-16 18:05:52.038854+00'), ('e862b7f3-e5ec-445b-bdfa-c605c644eb68', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602241731', '2503596255', 'MLB4602241731', 'updated', '{"sku": "B34216788183", "price": 499.99, "title": "Jogo Pastilha Freio Traseira Bmw Série 1 E Série 3", "status": "active"}', '2026-04-16 18:06:02.698866+00'), ('0f3b882b-0eca-4294-8f7f-e98530a7ae99', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607736770', '2503596255', 'MLB6607736770', 'updated', '{"sku": "B34216788183", "price": 474.99, "title": "Jogo Pastilha Freio Traseira Bmw Série 3 E90 E91", "status": "active"}', '2026-04-16 18:06:03.480236+00'), ('e8983da9-9327-4932-833d-a66c5d6e6d27', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607727282', '2503596255', 'MLB6607727282', 'updated', '{"sku": "2425301", "price": 470.59, "title": "Pastilha Textar Traseira Mercedes C220 07-14", "status": "active"}', '2026-04-16 18:06:11.723028+00'), ('ad07041e-4f0f-4ff1-8c1e-42419ae6cc44', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602228193', '2503596255', 'MLB4602228193', 'updated', '{"sku": "B34216788183", "price": 499.99, "title": "Jogo Pastilha Freio Traseira Bmw Série 1 E81 E82", "status": "active"}', '2026-04-16 18:06:13.41611+00'), ('ac5d3fc9-2232-4b31-8324-a2dad2751ddb', NULL, 'stock-locations', '/user-products/MLBU3903342928/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "eff3bb94-3509-4ceb-b31a-bf8733704cdf", "sent": "2026-04-16T18:06:18.163Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:00:47.341Z", "resource": "/user-products/MLBU3903342928/stock", "application_id": 4984880665306039}}', '2026-04-16 18:06:18.533419+00'), ('92dbd7f8-3a7a-4bcd-bc43-d230e6f0f068', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602253861', '2503596255', 'MLB4602253861', 'updated', '{"sku": "0242135509", "price": 90, "title": "Vela Ignicao Mercedes C280 E350 Ml500 Clk Slk", "status": "active"}', '2026-04-16 18:06:22.128579+00'), ('3fad274b-b0b1-460c-8f7d-d634fbcd688c', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607725878', '2503596255', 'MLB6607725878', 'updated', '{"sku": "2425301", "price": 498.94, "title": "Pastilha Textar Traseira Mercedes C220 07-14", "status": "active"}', '2026-04-16 18:06:26.572779+00'), ('ae1f2249-f6fe-4479-a89e-11745f03010a', NULL, 'stock-locations', '/user-products/MLBU3903343142/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "65c28984-9ff4-49e5-b234-5de7fe362a18", "sent": "2026-04-16T18:06:39.171Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:00:48.281Z", "resource": "/user-products/MLBU3903343142/stock", "application_id": 4984880665306039}}', '2026-04-16 18:06:39.463038+00'), ('ac47abbc-d7e4-4149-9b3d-c61fa8bda1af', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612819497', '2503596255', 'MLB4612819497', 'updated', '{"sku": "AR2701502900", "price": 260, "title": "Chicote Adaptador Bomba De Oleo Mercedes A200 2013 2014", "status": "paused"}', '2026-04-16 18:17:41.329482+00'), ('e1b6a098-a129-44f0-8833-d895935c19ce', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989596', '2503596255', 'MLB6630989596', 'updated', '{"sku": null, "price": 1390, "title": "Válvula Termostática Mercedes C180 C200 C250 W205 2015 2016", "status": "paused"}', '2026-04-16 18:17:46.350862+00'), ('035f5c9f-7bc5-46ea-98d6-979d4120feb3', NULL, 'stock-locations', '/user-products/MLBU3911804784/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "4b79435e-a6a9-4196-828b-9ceb5aa8961c", "sent": "2026-04-16T18:17:46.296Z", "topic": "stock-locations", "actions": ["field:status", "action:created"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:12:07.757Z", "resource": "/user-products/MLBU3911804784/stock", "application_id": 4984880665306039}}', '2026-04-16 18:17:46.635544+00'), ('23aff148-8cbe-467c-9600-b006a0e4f5a3', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783965', '2503596255', 'MLB4612783965', 'updated', '{"sku": "A2729060060", "price": 648.99, "title": "Bobina Mercedes 0001502780 C280 E280 Cls350 Original", "status": "paused"}', '2026-04-16 18:17:49.172589+00'), ('4d33e4db-67f1-4f28-a81e-b561d6a16c66', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630990314', '2503596255', 'MLB6630990314', 'updated', '{"sku": "BLR161571", "price": 2310, "title": "Bomba De Água Bmtsr Range Rover Iv L405 L494 L663 | Garantia", "status": "paused"}', '2026-04-16 18:17:49.352255+00'), ('e41b2e60-c290-404d-b095-d8b938170a83', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631000708', '2503596255', 'MLB6631000708', 'updated', '{"sku": "A2729060060", "price": 648.99, "title": "Bobina Ignição Mercedes C230 C280 Cls350 A2729060060", "status": "paused"}', '2026-04-16 18:17:49.564122+00'); INSERT INTO "public"."ml_webhook_logs" ("id", "user_id", "topic", "resource", "ml_user_id", "listing_id", "action", "details", "created_at") VALUES ('6a989351-6739-4671-a0ec-3f4d974bc668', NULL, 'stock-locations', '/user-products/MLBU3911804918/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "9457e923-31ce-48ae-b5e2-bfcd6a6fb823", "sent": "2026-04-16T18:17:53.105Z", "topic": "stock-locations", "actions": ["field:status", "action:created"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:12:13.973Z", "resource": "/user-products/MLBU3911804918/stock", "application_id": 4984880665306039}}', '2026-04-16 18:17:53.566162+00'), ('850bc7f8-465f-4800-b5c4-e85f6359bf68', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612784173', '2503596255', 'MLB4612784173', 'updated', '{"sku": "B17137609469", "price": 691, "title": "Reservatório Água Bmtsr Bmw 2 Cabrio F23 Garantia 3 Meses Gt", "status": "paused"}', '2026-04-16 18:17:55.20937+00'), ('109c6cf7-645c-4946-bd2c-539425b65825', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612819847', '2503596255', 'MLB4612819847', 'updated', '{"sku": "B11127570292", "price": 2027.84, "title": "Tampa Cabeçote Bmtsr Bmw N55 F11 535i 11127570292 Nova", "status": "paused"}', '2026-04-16 18:17:56.199911+00'), ('3808d3f7-29a5-447a-86fd-79f30558e28c', NULL, 'stock-locations', '/user-products/MLBU3900400963/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "8ea526d2-8dd0-48ad-a27c-3ab22b620a5a", "sent": "2026-04-16T18:17:56.476Z", "topic": "stock-locations", "actions": ["field:status", "action:created"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:12:20.781Z", "resource": "/user-products/MLBU3900400963/stock", "application_id": 4984880665306039}}', '2026-04-16 18:17:56.942344+00'), ('b28f1b11-6e05-439d-a965-b7ed63216392', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630990074', '2503596255', 'MLB6630990074', 'updated', '{"sku": "A2729060060", "price": 648.99, "title": "Bobina Mercedes C230 C280 E350 Glk350 A2729060060", "status": "paused"}', '2026-04-16 18:17:58.397134+00'), ('b35fc4e8-876a-4326-936d-5a13abb47146', NULL, 'stock-locations', '/user-products/MLBU3892003869/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "c2af1f5f-13f3-4775-99c6-f40823a18893", "sent": "2026-04-16T18:05:43.443Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:00:38.794Z", "resource": "/user-products/MLBU3892003869/stock", "application_id": 4984880665306039}}', '2026-04-16 18:05:44.014698+00'), ('c71ba48c-d067-4421-b754-61890e971207', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607700584', '2503596255', 'MLB6607700584', 'updated', '{"sku": "2425301", "price": 470.59, "title": "Pastilha Traseira Textar Classe C 2007-2014", "status": "active"}', '2026-04-16 18:05:50.377022+00'), ('3d09884a-f8c8-409f-8b69-06354ae5168f', NULL, 'stock-locations', '/user-products/MLBU3903348928/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "13cc7645-8ebb-4174-9620-02e4b98d24dd", "sent": "2026-04-16T18:05:55.171Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:00:38.824Z", "resource": "/user-products/MLBU3903348928/stock", "application_id": 4984880665306039}}', '2026-04-16 18:05:55.719311+00'), ('106e9f23-c171-46d7-b2f1-0373e78b539b', NULL, 'stock-locations', '/user-products/MLBU3903342852/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "34ad5a0c-d6b0-4c9b-8b09-5a2d6f20566b", "sent": "2026-04-16T18:06:16.37Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:00:40.376Z", "resource": "/user-products/MLBU3903342852/stock", "application_id": 4984880665306039}}', '2026-04-16 18:06:16.785567+00'), ('75f7b49a-e9a0-4dce-b2c7-7c36247471a0', NULL, 'stock-locations', '/user-products/MLBU3903372246/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "95633979-1a9c-4b4c-b8f9-3977d4b140c4", "sent": "2026-04-16T18:06:25.31Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:00:47.375Z", "resource": "/user-products/MLBU3903372246/stock", "application_id": 4984880665306039}}', '2026-04-16 18:06:25.722092+00'), ('d5801a53-d86c-4bf5-ac1c-3880ae539122', NULL, 'stock-locations', '/user-products/MLBU3903348748/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "c05a4f39-9216-4c68-9797-40c96dd63728", "sent": "2026-04-16T18:06:34.267Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:00:46.686Z", "resource": "/user-products/MLBU3903348748/stock", "application_id": 4984880665306039}}', '2026-04-16 18:06:34.889152+00'), ('9c00974d-805a-4ce9-9078-481ed6c7d9f7', NULL, 'user-products-families', '/sites/MLB/user-products-families/1324638288552465', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "75809d47-b9fd-494a-b98c-d10481bcdb23", "sent": "2026-04-16T18:17:44.315Z", "topic": "user-products-families", "actions": ["create"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:12:14.535Z", "resource": "/sites/MLB/user-products-families/1324638288552465", "application_id": 4984880665306039}}', '2026-04-16 18:17:44.70651+00'), ('d8781278-3d6b-4c07-9ab4-02d7b36462bd', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612795265', '2503596255', 'MLB4612795265', 'updated', '{"sku": "B0004203002", "price": 465, "title": "Pastilha Freio Dianteira Cerâmica Gla200 Gla250 C/sensor", "status": "paused"}', '2026-04-16 18:17:47.312615+00'), ('f0f09f4f-addf-463b-8c5c-06a6c1e4073a', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612795611', '2503596255', 'MLB4612795611', 'updated', '{"sku": "A2729060060", "price": 648.99, "title": "Bobina Mercedes A2729060060 C280 Cls350 E350 Ml350", "status": "paused"}', '2026-04-16 18:17:47.617858+00'), ('0dcadd35-cc25-4602-afb9-f45c4b98f092', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612819935', '2503596255', 'MLB4612819935', 'updated', '{"sku": "A2729060060", "price": 648.99, "title": "Bobina Ignição Mercedes C230 C280 A2729060060 Nova", "status": "paused"}', '2026-04-16 18:17:48.30901+00'), ('c379b08b-80ef-448f-b5c6-693b0bff9acd', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612819433', '2503596255', 'MLB4612819433', 'updated', '{"sku": null, "price": 451.78, "title": "Coxim Amortecedor Dianteiro Bmw 320i G20 2019-2020", "status": "paused"}', '2026-04-16 18:17:48.947226+00'), ('6a2fc18c-54a5-4d4a-92a5-28f6299005e5', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612806935', '2503596255', 'MLB4612806935', 'updated', '{"sku": "B11127588412", "price": 1590, "title": "Tampa De Válvula Bmw X1 2.0 S-drive 12 À 15", "status": "paused"}', '2026-04-16 18:17:49.358619+00'), ('9cecc6a0-204d-42bd-9817-42a690b9b157', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631000852', '2503596255', 'MLB6631000852', 'updated', '{"sku": "B12138616153", "price": 360, "title": "Bobina Ignição Bmw Bmtsr Série 3 5 6 7 X1 X2 X3 X5", "status": "paused"}', '2026-04-16 18:17:51.210673+00'), ('3d4e76c3-8cdb-4282-9a54-1871ce162f7f', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612795381', '2503596255', 'MLB4612795381', 'updated', '{"sku": "B22118743621", "price": 590, "title": "Coxim Direito Motor Bmw X1 F48 2015 2016 2017 2018 2019", "status": "paused"}', '2026-04-16 18:17:51.699947+00'), ('81905cef-6049-4895-8347-ecc9b8a16bc8', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631000622', '2503596255', 'MLB6631000622', 'updated', '{"sku": "A2043200131", "price": 2405.11, "title": "Amortecedor Traseiro Mercedes-benz - Confiabilidade Garantid", "status": "active"}', '2026-04-16 18:17:53.095871+00'), ('d5a34984-2271-4c7e-8591-9debff9cc68c', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612784185', '2503596255', 'MLB4612784185', 'updated', '{"sku": "BLR092060", "price": 180, "title": "Sensor Desgaste Freio Traseiro Rover Evoque Bmtsr L551 18+ .", "status": "paused"}', '2026-04-16 18:17:55.312152+00'), ('f009ebda-49fc-4124-accc-c8f9945570ee', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612806553', '2503596255', 'MLB4612806553', 'updated', '{"sku": "46404", "price": 790, "title": "Válvula Termostática Bmw Febi 528i 2.0 16v N20 11538648791", "status": "paused"}', '2026-04-16 18:17:59.880143+00'), ('648fd208-deb4-409f-ae3e-24116fe0d262', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612795255', '2503596255', 'MLB4612795255', 'updated', '{"sku": "P2682", "price": 1852, "title": "Bomba Dágua Land Rover Evoque 2.0 16v Ingenium 2019 2020 21", "status": "paused"}', '2026-04-16 18:18:09.086884+00'), ('de0e7158-3cae-483b-a1f6-5f7dab43f161', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989984', '2503596255', 'MLB6630989984', 'updated', '{"sku": "B11127552281", "price": 2200, "title": "Tampa De Válvula Bmw E90 E60 E70 11127552281 Bmtsr", "status": "paused"}', '2026-04-16 18:18:12.268342+00'), ('28fbd4d8-1259-4ef7-8f4b-74991bc6fc49', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631000522', '2503596255', 'MLB6631000522', 'updated', '{"sku": "AR2709050600", "price": 445.55, "title": "Sensor Posição Do Virabrequim Mercedes C180 C200 C250 C300", "status": "paused"}', '2026-04-16 18:18:13.966202+00'), ('11c77cac-0695-4a18-a235-bf96ec37f1aa', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612806983', '2503596255', 'MLB4612806983', 'updated', '{"sku": "A2729060060", "price": 612.11, "title": "Bobina Ignição Mercedes A2729060060 M272 V6 4 Pinos", "status": "paused"}', '2026-04-16 18:18:17.605329+00'), ('81eca348-758f-480c-b3bb-16a83dd66626', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612820205', '2503596255', 'MLB4612820205', 'updated', '{"sku": "B17137609469", "price": 691, "title": "Reservatório Água Motor Bmtsr Bmw F31 2011-2019 Peça Nova Gt", "status": "paused"}', '2026-04-16 18:18:21.057274+00'), ('f2359b6a-3cbb-4b27-9ead-036e7b6182fe', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989910', '2503596255', 'MLB6630989910', 'updated', '{"sku": "B31316851747PAR", "price": 1413.83, "title": "Amortecedor Dianteiro Para X5 3.0 24v 2012 À 2018", "status": "paused"}', '2026-04-16 18:18:25.661461+00'), ('14f768eb-c62d-432c-9c95-0426e9adcbf9', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612795711', '2503596255', 'MLB4612795711', 'updated', '{"sku": "BLR161571", "price": 2310, "title": "Bomba D''água Bmtsr P/ Range Rover Velar L560 2.0 3.0 | Bmtsr", "status": "paused"}', '2026-04-16 18:18:27.548829+00'), ('d15604f7-1c2d-4ece-972b-e42004bd5107', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607724224', '2503596255', 'MLB6607724224', 'updated', '{"sku": "B34216788183", "price": 499.99, "title": "Pastilha Freio Traseira Bmw Série 1 Hatch E81 E87", "status": "active"}', '2026-04-16 18:05:45.28332+00'), ('1fae569c-05f1-4f3a-9dd7-be914b77d05b', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602236605', '2503596255', 'MLB4602236605', 'updated', '{"sku": "B34216788183", "price": 474.99, "title": "Pastilha De Freio Traseiro Kit Bmw Serie 1 E Serie 3", "status": "active"}', '2026-04-16 18:05:57.520935+00'), ('c5d93e46-f22d-4767-9707-a4eb28e2ad83', NULL, 'stock-locations', '/user-products/MLBU3892016717/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "c0a5d4eb-a7db-4e72-b3e0-f93f444d95cd", "sent": "2026-04-16T18:06:40.33Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:01:28.695Z", "resource": "/user-products/MLBU3892016717/stock", "application_id": 4984880665306039}}', '2026-04-16 18:06:40.75531+00'), ('91987dbe-928a-4c5b-8ebf-84beca0a01f4', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607699176', '2503596255', 'MLB6607699176', 'updated', '{"sku": "2425301", "price": 498.94, "title": "Pastilha Freio Textar Mercedes C 2007-14", "status": "active"}', '2026-04-16 18:06:49.650559+00'), ('e7096b1c-b21b-4e5b-9b65-dcdec6f76fa6', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989782', '2503596255', 'MLB6630989782', 'updated', '{"sku": "B1663231465", "price": 129, "title": "Bucha Barra Estabilizadora Dianteira Mercedes Ml350 W166", "status": "paused"}', '2026-04-16 18:17:44.774557+00'), ('f3492330-ddcf-4dd4-be97-428da4234493', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612806935', '2503596255', 'MLB4612806935', 'updated', '{"sku": "B11127588412", "price": 1590, "title": "Tampa De Válvula Bmw X1 2.0 S-drive 12 À 15", "status": "paused"}', '2026-04-16 18:17:47.684023+00'), ('bf9ffbcf-e8aa-437a-a550-65d7531bb025', NULL, 'stock-locations', '/user-products/MLBU3911804996/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "d1f50b84-62c2-47b9-a809-d8b1c49fb8cd", "sent": "2026-04-16T18:17:52.209Z", "topic": "stock-locations", "actions": ["field:status", "action:created"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:12:18.417Z", "resource": "/user-products/MLBU3911804996/stock", "application_id": 4984880665306039}}', '2026-04-16 18:17:52.531506+00'), ('472727f6-9c2b-46da-9653-6ae357f54e67', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631000864', '2503596255', 'MLB6631000864', 'updated', '{"sku": "B12138616153", "price": 360, "title": "Bobina Injeção Bmw Bmtsr Série 3 5 6 7 X1 X3 X5 X6", "status": "paused"}', '2026-04-16 18:17:53.129637+00'), ('77af0f8c-93c2-44c3-a81d-39b71cb4e754', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6589832486', '2503596255', 'MLB6589832486', 'updated', '{"sku": "B11377603979", "price": 1660, "title": "Atuador Valvetronic Bmtsr P/ Bmw Série 3 Gt F34", "status": "active"}', '2026-04-16 18:17:55.012973+00'), ('bc5e1513-419d-44cc-90be-3bd426178305', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612806949', '2503596255', 'MLB4612806949', 'updated', '{"sku": "A2729060060", "price": 612.11, "title": "Bobina Mercedes C280 E280 0001501980 A2729060060", "status": "paused"}', '2026-04-16 18:17:56.50463+00'), ('e70ea95b-41af-49f6-9ae4-37f21f871aea', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989836', '2503596255', 'MLB6630989836', 'updated', '{"sku": "B1643202431PAR", "price": 2555.31, "title": "Amortecedor Traseiro Mercedes Ml420 Ml450 Ml500 Ml550 Sachs", "status": "paused"}', '2026-04-16 18:17:58.020216+00'), ('019a47dc-6ef7-4d4e-a112-7db463730cf9', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783965', '2503596255', 'MLB4612783965', 'updated', '{"sku": "A2729060060", "price": 648.99, "title": "Bobina Mercedes 0001502780 C280 E280 Cls350 Original", "status": "paused"}', '2026-04-16 18:17:59.928997+00'), ('2a7ffc67-03b1-467b-9e1c-55922ff94494', NULL, 'user-products-families', '/sites/MLB/user-products-families/6105889803985297', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "5fed7ac4-dd25-4360-8793-8ccc17b1b61b", "sent": "2026-04-16T18:18:17.268Z", "topic": "user-products-families", "actions": ["create"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:12:59.819Z", "resource": "/sites/MLB/user-products-families/6105889803985297", "application_id": 4984880665306039}}', '2026-04-16 18:18:17.750959+00'), ('4ec706e1-23e7-431f-aa34-82dba24dcc90', NULL, 'items_prices', '/items/MLB4612784289/prices', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "b4f86872-73d1-42b9-84db-fab50edad056", "sent": "2026-04-16T18:18:24.877Z", "topic": "items_prices", "actions": [], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:14:16.954Z", "resource": "/items/MLB4612784289/prices", "application_id": 4984880665306039}}', '2026-04-16 18:18:25.236592+00'), ('8844520c-e4e2-48a0-885c-89d3a4437c57', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6589869554', '2503596255', 'MLB6589869554', 'updated', '{"sku": "B11377603979", "price": 1660, "title": "Atuador Valvetronic Bmtsr Compatível C/ Bmw F10 F11", "status": "under_review"}', '2026-04-16 18:18:25.465291+00'), ('5f42c102-85af-4362-a41f-b4dd17d03336', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612807079', '2503596255', 'MLB4612807079', 'updated', '{"sku": "A2729060060", "price": 648.99, "title": "Bobina Mercedes Cls350 E280 Ml350 A2729060060", "status": "paused"}', '2026-04-16 18:18:25.891226+00'), ('e9f9b3e4-fd2e-48fe-b43c-a3e61185db4a', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631000848', '2503596255', 'MLB6631000848', 'updated', '{"sku": "B2462400809", "price": 381.99, "title": "Calço Superior Motor Mercedes Classe A/b/cla/gla 2013-2017", "status": "paused"}', '2026-04-16 18:18:29.756426+00'), ('db33a049-3c75-4209-936d-4a558a3f9972', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989842', '2503596255', 'MLB6630989842', 'updated', '{"sku": "B1643202431PAR", "price": 2690, "title": " Amortecedor Traseiro Mercedes Ml350 W164 2005 À 2013", "status": "paused"}', '2026-04-16 18:18:30.63469+00'), ('7c4c2818-da63-4168-b18b-48f906a4b8fd', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612806979', '2503596255', 'MLB4612806979', 'updated', '{"sku": "A2729060060", "price": 648.99, "title": "Bobina Mercedes V6 C230 C280 Cls350 2729060060 Nova", "status": "paused"}', '2026-04-16 18:18:31.991219+00'), ('fa34eecc-ff77-42d4-84aa-a7d556952dc4', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630990134', '2503596255', 'MLB6630990134', 'updated', '{"sku": "A2729060060", "price": 648.99, "title": "Bobina Mercedes C230 E280 Ml350 V6 A2729060060 Nova", "status": "paused"}', '2026-04-16 18:18:33.666991+00'), ('cf3fbf48-4b5d-4d5e-b9d5-308491967708', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630990220', '2503596255', 'MLB6630990220', 'updated', '{"sku": "BLR161571", "price": 2212, "title": "Bomba D''água Bmtsr P/ Range Rover Evoque L538 | 3 Meses | 2l", "status": "paused"}', '2026-04-16 18:18:34.677476+00'); INSERT INTO "public"."ml_webhook_logs" ("id", "user_id", "topic", "resource", "ml_user_id", "listing_id", "action", "details", "created_at") VALUES ('1215a140-e102-47c6-af27-f236c055d4b0', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612820205', '2503596255', 'MLB4612820205', 'updated', '{"sku": "B17137609469", "price": 691, "title": "Reservatório Água Motor Bmtsr Bmw F31 2011-2019 Peça Nova Gt", "status": "paused"}', '2026-04-16 18:18:44.145738+00'), ('67fd47ab-f777-453f-b8f6-95934459fa5c', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612795711', '2503596255', 'MLB4612795711', 'updated', '{"sku": "BLR161571", "price": 2310, "title": "Bomba D''água Bmtsr P/ Range Rover Velar L560 2.0 3.0 | Bmtsr", "status": "paused"}', '2026-04-16 18:18:48.316785+00'), ('6611ca33-d1e6-4dc5-be78-97c7612aee02', NULL, 'user-products-families', '/sites/MLB/user-products-families/6928742632410386', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "fc3f6840-d490-42e6-b858-a97996489548", "sent": "2026-04-16T18:18:48.339Z", "topic": "user-products-families", "actions": ["create"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:13:39.079Z", "resource": "/sites/MLB/user-products-families/6928742632410386", "application_id": 4984880665306039}}', '2026-04-16 18:18:48.659241+00'), ('eb540806-e6b1-4c20-9fb8-a9aace097983', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612795865', '2503596255', 'MLB4612795865', 'updated', '{"sku": "B17137609469", "price": 691, "title": "Reservatório Água Bmtsr Bmw 3 Touring F31 Peça Nova Garantia", "status": "paused"}', '2026-04-16 18:18:51.924929+00'), ('fab9425a-0f1a-48fb-be22-7961ce2e5e11', NULL, 'stock-locations', '/user-products/MLBU3892017071/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "aa929ff9-f0e3-4bcc-8416-41da9a35231f", "sent": "2026-04-16T18:05:58.034Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:00:37.224Z", "resource": "/user-products/MLBU3892017071/stock", "application_id": 4984880665306039}}', '2026-04-16 18:05:58.404062+00'), ('9d770941-6c09-4f20-a629-936345764d7f', NULL, 'stock-locations', '/user-products/MLBU3892016725/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "bc54bbdc-a43b-49b0-8294-089a56e27a6e", "sent": "2026-04-16T18:07:11.189Z", "topic": "stock-locations", "actions": ["type:selling_address"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:01:27.292Z", "resource": "/user-products/MLBU3892016725/stock", "application_id": 4984880665306039}}', '2026-04-16 18:07:11.534668+00'), ('1e386f53-25c2-471b-9092-a9b1f0ad1cad', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783685', '2503596255', 'MLB4612783685', 'updated', '{"sku": "BKR6EGPKIT4", "price": 159, "title": " 4 Velas Ignição Ngk Platina Audi A3 1.8 20v Turbo 2001 2002", "status": "paused"}', '2026-04-16 18:17:46.389197+00'), ('39a72822-01ba-4e33-9359-82fe03384ed1', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612819827', '2503596255', 'MLB4612819827', 'updated', '{"sku": "B11127552281", "price": 2075, "title": "Tampa Válvula Bmw N52 Bmtsr Série 3 5 6 11127582245", "status": "paused"}', '2026-04-16 18:17:48.683424+00'), ('8ee03eab-c56f-40b4-b72f-483a2a47115e', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4592668633', '2503596255', 'MLB4592668633', 'updated', '{"sku": "B11377603979", "price": 1660, "title": "Atuador Valvetronic Bmtsr P/ Bmw Série 2 Coupe Cabrio", "status": "active"}', '2026-04-16 18:17:49.373195+00'), ('21b98d3e-5a98-4fcc-9470-b749b8fc4797', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612807017', '2503596255', 'MLB4612807017', 'updated', '{"sku": "A2729060060", "price": 612.11, "title": "Bobina De Ignição Merc. C-230 C-280 Cls-350 A2729060060", "status": "paused"}', '2026-04-16 18:17:51.946399+00'), ('d005901d-2f2a-4db1-ad64-94b830c4e02d', NULL, 'stock-locations', '/user-products/MLBU3900402679/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "c252bc88-e4fa-4819-b13d-7e8ec5204642", "sent": "2026-04-16T18:17:51.96Z", "topic": "stock-locations", "actions": ["field:status", "action:created"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:12:20.347Z", "resource": "/user-products/MLBU3900402679/stock", "application_id": 4984880665306039}}', '2026-04-16 18:17:52.461842+00'), ('3284c44c-dd27-4ef4-9b5a-0a576ed77a90', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989910', '2503596255', 'MLB6630989910', 'updated', '{"sku": "B31316851747PAR", "price": 1413.83, "title": "Amortecedor Dianteiro Para X5 3.0 24v 2012 À 2018", "status": "paused"}', '2026-04-16 18:17:53.377337+00'), ('acf1f46a-1513-44e8-a137-aa86997954c1', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612795383', '2503596255', 'MLB4612795383', 'updated', '{"sku": "A2043200131", "price": 2550, "title": "Instalação Simples: Amortecedor Traseiro De Alta Performance", "status": "paused"}', '2026-04-16 18:17:53.660969+00'), ('c76a3629-72c7-4f03-8f90-fccb304346a3', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612795381', '2503596255', 'MLB4612795381', 'updated', '{"sku": "B22118743621", "price": 590, "title": "Coxim Direito Motor Bmw X1 F48 2015 2016 2017 2018 2019", "status": "paused"}', '2026-04-16 18:17:53.987409+00'), ('469fc9c3-99b2-4ce9-b15e-52f44963a992', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989956', '2503596255', 'MLB6630989956', 'updated', '{"sku": "A2043200131", "price": 2405.11, "title": "Peça De Qualidade: Amortecedor Traseiro Mercedes-benz", "status": "paused"}', '2026-04-16 18:17:58.016104+00'), ('4c3ebfc2-37a1-4f8a-9ac2-79180f540c37', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612819847', '2503596255', 'MLB4612819847', 'updated', '{"sku": "B11127570292", "price": 2027.84, "title": "Tampa Cabeçote Bmtsr Bmw N55 F11 535i 11127570292 Nova", "status": "paused"}', '2026-04-16 18:18:05.856316+00'), ('3a645bdb-cf13-4dc1-bbe6-8a082e84b0e6', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612819617', '2503596255', 'MLB4612819617', 'updated', '{"sku": "15-10027-01", "price": 299, "title": "Junta Tampa Válvulas Bmw 125i 320i X1 X3 X4 328i N20 F26", "status": "paused"}', '2026-04-16 18:18:11.125547+00'), ('aa9a3400-1760-4dd9-a308-d5d3ac63f1d2', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631000976', '2503596255', 'MLB6631000976', 'updated', '{"sku": "BLR161571", "price": 2310, "title": "Bomba D''água Bmtsr Land Rover L405 L494 L538 L560 L550 | 4x4", "status": "paused"}', '2026-04-16 18:18:17.725429+00'), ('e4b73e87-0bc4-4f16-86cf-889775525a71', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783839', '2503596255', 'MLB4612783839', 'updated', '{"sku": "A2043200131", "price": 2405.11, "title": "Aumente A Segurança: Amortecedor Traseiro Para Mercedes-benz", "status": "paused"}', '2026-04-16 18:18:22.604151+00'), ('85097053-1dee-4807-bcf3-c8614b2e68c9', NULL, 'user-products-families', '/sites/MLB/user-products-families/4326858398722000', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "fada8341-a1ae-42a6-b138-7322cdfad15a", "sent": "2026-04-16T18:18:25.03Z", "topic": "user-products-families", "actions": ["create"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:12:52.916Z", "resource": "/sites/MLB/user-products-families/4326858398722000", "application_id": 4984880665306039}}', '2026-04-16 18:18:25.42565+00'), ('53d2bca7-144a-451d-aeb7-6546b80a9be9', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612820303', '2503596255', 'MLB4612820303', 'updated', '{"sku": "B17137609469", "price": 728, "title": "Reservatório Água Motor Bmtsr Bmw F32 F33 F36 Bmw Compatível", "status": "paused"}', '2026-04-16 18:18:27.808806+00'), ('3aad678a-3a0e-4c30-b33a-87d19efffa43', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612820303', '2503596255', 'MLB4612820303', 'updated', '{"sku": "B17137609469", "price": 728, "title": "Reservatório Água Motor Bmtsr Bmw F32 F33 F36 Bmw Compatível", "status": "paused"}', '2026-04-16 18:18:29.705584+00'), ('169a0a2d-1d78-4bb7-bbfd-bec5573bc1ca', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612784173', '2503596255', 'MLB4612784173', 'updated', '{"sku": "B17137609469", "price": 691, "title": "Reservatório Água Bmtsr Bmw 2 Cabrio F23 Garantia 3 Meses Gt", "status": "paused"}', '2026-04-16 18:18:30.209732+00'), ('ab8a33ce-d473-4bab-b8a9-0e26257a19c8', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612807297', '2503596255', 'MLB4612807297', 'updated', '{"sku": "B17137609469", "price": 691, "title": "Reservatório Água Motor Bmtsr Bmw F20 2010-2019 Peça Nova Gt", "status": "paused"}', '2026-04-16 18:18:40.635726+00'), ('e5c51a7f-5140-4a3f-be72-3b835a818bf9', NULL, 'stock-locations', '/user-products/MLBU3900403843/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "18375ad4-ce57-48a8-9513-2109e41ff1ac", "sent": "2026-04-16T18:18:44.312Z", "topic": "stock-locations", "actions": ["field:status", "action:created"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:13:18.864Z", "resource": "/user-products/MLBU3900403843/stock", "application_id": 4984880665306039}}', '2026-04-16 18:18:44.60319+00'), ('b807212b-df66-4fe6-b990-64031ec6b816', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612784305', '2503596255', 'MLB4612784305', 'updated', '{"sku": "BLR161571", "price": 2310, "title": "Bomba De Água Bmtsr Jaguar F-type Xe Xf F-pace Garantia | 2l", "status": "paused"}', '2026-04-16 18:18:47.35597+00'), ('37246fe9-fddb-47b9-89cd-7baed832208e', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630990220', '2503596255', 'MLB6630990220', 'updated', '{"sku": "BLR161571", "price": 2212, "title": "Bomba D''água Bmtsr P/ Range Rover Evoque L538 | 3 Meses | 2l", "status": "paused"}', '2026-04-16 18:18:51.258358+00'), ('881e1894-7b43-4f8a-a161-91973144c343', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612807059', '2503596255', 'MLB4612807059', 'updated', '{"sku": "A2729060060", "price": 612.11, "title": "Bobina A2729060060 Mercedes C280 E350 Cls350 Nova", "status": "paused"}', '2026-04-16 18:19:01.71601+00'), ('acb57987-c45a-4187-9625-c582f7f3c7f9', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607786360', '2503596255', NULL, 'error', '{"reason": "token_expired"}', '2026-04-16 21:42:09.725919+00'), ('6cf61e75-f3fb-4fee-8dd0-f63cef602de7', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4602208997', '2503596255', 'MLB4602208997', 'updated', '{"sku": "B34216788183", "price": 499.99, "title": "Pastilha De Freio Traseiro Kit Bmw Serie 1 E Serie 3", "status": "active"}', '2026-04-16 18:06:00.232625+00'), ('6c0d5cd7-ce1a-4fc1-b3e3-42e5dc2f40b0', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6607748938', '2503596255', 'MLB6607748938', 'updated', '{"sku": "B34216794618", "price": 1235.3, "title": "Servo Atuador Motor Pinça Freio Bmw X3 X4 528 530 550 650", "status": "active"}', '2026-04-16 18:07:18.450711+00'), ('3d88d50d-8292-473c-ba24-9286e911540c', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612819699', '2503596255', 'MLB4612819699', 'updated', '{"sku": "P2682", "price": 1950, "title": "Bomba Dágua Range Rover Velar 2.0 P250 2017 À 2024", "status": "paused"}', '2026-04-16 18:17:46.785957+00'), ('d97042d4-ffc6-4d2f-a777-0dcb952c8e32', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6589311268', '2503596255', 'MLB6589311268', 'updated', '{"sku": "B11377603979", "price": 1599, "title": " Atuador Valvetronic Bmw 320i 328i N20 2013 2014 2015 2017", "status": "under_review"}', '2026-04-16 18:17:47.216294+00'), ('74bc6182-31b5-427a-9e6c-dfb50eec7dd3', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6630989950', '2503596255', 'MLB6630989950', 'updated', '{"sku": "A2043200131", "price": 2405.11, "title": "Proteja Seu Veículo: Amortecedor Traseiro De Alta Durabilida", "status": "paused"}', '2026-04-16 18:17:47.473685+00'), ('7f85b7a2-d431-4dcb-a7b6-90182b8fcdd2', NULL, 'user-products-families', '/sites/MLB/user-products-families/5217032802296977', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "6770e438-3bcd-4394-b2eb-b8a101d0ab9b", "sent": "2026-04-16T18:17:50.227Z", "topic": "user-products-families", "actions": ["create"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:12:08.625Z", "resource": "/sites/MLB/user-products-families/5217032802296977", "application_id": 4984880665306039}}', '2026-04-16 18:17:50.593118+00'), ('2dff1a21-0159-4515-a384-52a152af1507', NULL, 'stock-locations', '/user-products/MLBU3911803190/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "f2f16079-3c55-43af-9914-ac2a7ea57eec", "sent": "2026-04-16T18:17:51.324Z", "topic": "stock-locations", "actions": ["field:status", "action:created"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:12:06.842Z", "resource": "/user-products/MLBU3911803190/stock", "application_id": 4984880665306039}}', '2026-04-16 18:17:51.598775+00'), ('3a5effd8-a11f-426e-818e-c4124db9d470', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612784227', '2503596255', 'MLB4612784227', 'updated', '{"sku": "B17137609469", "price": 728, "title": "Tanque Expansão Sistema Bmtsr Bmw F20 F21 F30 Bmw Compatível", "status": "paused"}', '2026-04-16 18:17:51.879407+00'), ('06514824-746d-4912-8855-77a9aed76899', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612819847', '2503596255', 'MLB4612819847', 'updated', '{"sku": "B11127570292", "price": 2027.84, "title": "Tampa Cabeçote Bmtsr Bmw N55 F11 535i 11127570292 Nova", "status": "paused"}', '2026-04-16 18:17:57.399946+00'), ('42a21335-3fc4-4ab8-8fe4-fdcb8cb72390', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612806623', '2503596255', 'MLB4612806623', 'updated', '{"sku": "B2044700894", "price": 1339, "title": "Bomba Combustível Mercedes C180 Cgi 2007 2008 2009 2010 2011", "status": "paused"}', '2026-04-16 18:17:59.482526+00'), ('6b49591d-f970-408e-82f1-37eb9985a7cf', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612783787', '2503596255', 'MLB4612783787', 'updated', '{"sku": "900126", "price": 250, "title": "Kit Batente Amortecedor Traseiro Bmw X1 E84 2009-2012", "status": "paused"}', '2026-04-16 18:18:02.12252+00'), ('7fa88b25-4658-4f6c-8f0d-29b586ac8435', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612806623', '2503596255', 'MLB4612806623', 'updated', '{"sku": "B2044700894", "price": 1339, "title": "Bomba Combustível Mercedes C180 Cgi 2007 2008 2009 2010 2011", "status": "paused"}', '2026-04-16 18:18:07.802876+00'), ('369c3431-5e0a-43a7-8b42-3239a0d4db3c', NULL, 'user-products-families', '/sites/MLB/user-products-families/7634372803315855', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "66d0ba00-94cd-4f0e-99b6-d5392da788d1", "sent": "2026-04-16T18:18:15.141Z", "topic": "user-products-families", "actions": ["create"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:12:24.925Z", "resource": "/sites/MLB/user-products-families/7634372803315855", "application_id": 4984880665306039}}', '2026-04-16 18:18:15.444478+00'), ('347c0abf-b324-4f3c-976b-79c916adc342', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6589869554', '2503596255', 'MLB6589869554', 'updated', '{"sku": "B11377603979", "price": 1660, "title": "Atuador Valvetronic Bmtsr Compatível C/ Bmw F10 F11", "status": "under_review"}', '2026-04-16 18:18:19.356569+00'), ('1ca72eb5-f069-4188-aa53-d4e180987a75', NULL, 'stock-locations', '/user-products/MLBU3911805910/stock', '2503596255', NULL, 'ignored', '{"reason": "non-item topic", "notification": {"_id": "d62a23c1-3d54-45e2-8024-58a5eebd64f6", "sent": "2026-04-16T18:18:22.32Z", "topic": "stock-locations", "actions": ["field:status", "action:created"], "user_id": 2503596255, "attempts": 2, "received": "2026-04-16T18:13:01.81Z", "resource": "/user-products/MLBU3911805910/stock", "application_id": 4984880665306039}}', '2026-04-16 18:18:22.763941+00'), ('7ce90b07-5bbe-4331-909b-0779a197e038', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612784305', '2503596255', 'MLB4612784305', 'updated', '{"sku": "BLR161571", "price": 2310, "title": "Bomba De Água Bmtsr Jaguar F-type Xe Xf F-pace Garantia | 2l", "status": "paused"}', '2026-04-16 18:18:23.622762+00'), ('729779e6-b773-4cbd-b730-9169238bd260', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631000896', '2503596255', 'MLB6631000896', 'updated', '{"sku": "B12138616153", "price": 339.55, "title": "Bobina Bmw Bmtsr Motor Série 3 E90 F30 F31 X3 X5", "status": "paused"}', '2026-04-16 18:18:26.537022+00'), ('95007416-f146-45a9-9d4e-54d1759d8dd0', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612795865', '2503596255', 'MLB4612795865', 'updated', '{"sku": "B17137609469", "price": 691, "title": "Reservatório Água Bmtsr Bmw 3 Touring F31 Peça Nova Garantia", "status": "paused"}', '2026-04-16 18:18:27.727733+00'), ('9459726a-1c5a-49b5-8ec0-43e9999b38f7', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB6631000848', '2503596255', 'MLB6631000848', 'updated', '{"sku": "B2462400809", "price": 381.99, "title": "Calço Superior Motor Mercedes Classe A/b/cla/gla 2013-2017", "status": "paused"}', '2026-04-16 18:18:31.038936+00'), ('fe5a4ca0-0eff-42af-984e-47aecc222cb7', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612820205', '2503596255', 'MLB4612820205', 'updated', '{"sku": "B17137609469", "price": 691, "title": "Reservatório Água Motor Bmtsr Bmw F31 2011-2019 Peça Nova Gt", "status": "paused"}', '2026-04-16 18:18:34.350254+00'), ('d54ea99e-7443-44d4-b744-975d979e2892', '15d40f49-cdfe-4799-875d-725710134716', 'items', '/items/MLB4612784227', '2503596255', 'MLB4612784227', 'updated', '{"sku": "B17137609469", "price": 728, "title": "Tanque Expansão Sistema Bmtsr Bmw F20 F21 F30 Bmw Compatível", "status": "paused"}', '2026-04-16 18:18:34.816084+00');