UNPKG

@sentry/core

Version:
42 lines (34 loc) 822 B
import { getCurrentScope, getClient } from './currentScopes.js'; /** * Send user feedback to Sentry. */ function captureFeedback( params, hint = {}, scope = getCurrentScope(), ) { const { message, name, email, url, source, associatedEventId, tags } = params; const feedbackEvent = { contexts: { feedback: { contact_email: email, name, message, url, source, associated_event_id: associatedEventId, }, }, type: 'feedback', level: 'info', tags, }; const client = scope?.getClient() || getClient(); if (client) { client.emit('beforeSendFeedback', feedbackEvent, hint); } const eventId = scope.captureEvent(feedbackEvent, hint); return eventId; } export { captureFeedback }; //# sourceMappingURL=feedback.js.map