/** POST /api/accounting/amazon-ads/disconnect — forget the LWA refresh token + profile. */ import { setAdsSetting } from '../../../utils/amazonAds/adsStore' export default defineEventHandler(async () => { for (const k of ['refresh_token', 'connected_at', 'profile_id', 'profile_label', 'oauth_state']) setAdsSetting(k, null) return { status: 200 } })