UNPKG

@platformos/pos-cli

Version:

Manage your platformOS application

179 lines 5.32 kB
Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = require("tslib"); var hub_1 = require("@sentry/hub"); /** * This calls a function on the current hub. * @param method function to call on hub. * @param args to pass to function. */ function callOnHub(method) { var args = []; for (var _i = 1; _i < arguments.length; _i++) { args[_i - 1] = arguments[_i]; } var hub = hub_1.getCurrentHub(); if (hub && hub[method]) { // tslint:disable-next-line:no-unsafe-any return hub[method].apply(hub, tslib_1.__spread(args)); } throw new Error("No hub defined or " + method + " was not found on the hub, please open a bug report."); } /** * Captures an exception event and sends it to Sentry. * * @param exception An exception-like object. * @returns The generated eventId. */ function captureException(exception) { var syntheticException; try { throw new Error('Sentry syntheticException'); } catch (exception) { syntheticException = exception; } return callOnHub('captureException', exception, { originalException: exception, syntheticException: syntheticException, }); } exports.captureException = captureException; /** * Captures a message event and sends it to Sentry. * * @param message The message to send to Sentry. * @param level Define the level of the message. * @returns The generated eventId. */ function captureMessage(message, level) { var syntheticException; try { throw new Error(message); } catch (exception) { syntheticException = exception; } return callOnHub('captureMessage', message, level, { originalException: message, syntheticException: syntheticException, }); } exports.captureMessage = captureMessage; /** * Captures a manually created event and sends it to Sentry. * * @param event The event to send to Sentry. * @returns The generated eventId. */ function captureEvent(event) { return callOnHub('captureEvent', event); } exports.captureEvent = captureEvent; /** * Callback to set context information onto the scope. * @param callback Callback function that receives Scope. */ function configureScope(callback) { callOnHub('configureScope', callback); } exports.configureScope = configureScope; /** * Records a new breadcrumb which will be attached to future events. * * Breadcrumbs will be added to subsequent events to provide more context on * user's actions prior to an error or crash. * * @param breadcrumb The breadcrumb to record. */ function addBreadcrumb(breadcrumb) { callOnHub('addBreadcrumb', breadcrumb); } exports.addBreadcrumb = addBreadcrumb; /** * Sets context data with the given name. * @param name of the context * @param context Any kind of data. This data will be normailzed. */ function setContext(name, context) { callOnHub('setContext', name, context); } exports.setContext = setContext; /** * Set an object that will be merged sent as extra data with the event. * @param extras Extras object to merge into current context. */ function setExtras(extras) { callOnHub('setExtras', extras); } exports.setExtras = setExtras; /** * Set an object that will be merged sent as tags data with the event. * @param tags Tags context object to merge into current context. */ function setTags(tags) { callOnHub('setTags', tags); } exports.setTags = setTags; /** * Set key:value that will be sent as extra data with the event. * @param key String of extra * @param extra Any kind of data. This data will be normailzed. */ function setExtra(key, extra) { callOnHub('setExtra', key, extra); } exports.setExtra = setExtra; /** * Set key:value that will be sent as tags data with the event. * @param key String key of tag * @param value String value of tag */ function setTag(key, value) { callOnHub('setTag', key, value); } exports.setTag = setTag; /** * Updates user context information for future events. * * @param user User context object to be set in the current context. Pass `null` to unset the user. */ function setUser(user) { callOnHub('setUser', user); } exports.setUser = setUser; /** * Creates a new scope with and executes the given operation within. * The scope is automatically removed once the operation * finishes or throws. * * This is essentially a convenience function for: * * pushScope(); * callback(); * popScope(); * * @param callback that will be enclosed into push/popScope. */ function withScope(callback) { callOnHub('withScope', callback); } exports.withScope = withScope; /** * Calls a function on the latest client. Use this with caution, it's meant as * in "internal" helper so we don't need to expose every possible function in * the shim. It is not guaranteed that the client actually implements the * function. * * @param method The method to call on the client/client. * @param args Arguments to pass to the client/fontend. * @hidden */ function _callOnClient(method) { var args = []; for (var _i = 1; _i < arguments.length; _i++) { args[_i - 1] = arguments[_i]; } callOnHub.apply(void 0, tslib_1.__spread(['_invokeClient', method], args)); } exports._callOnClient = _callOnClient; //# sourceMappingURL=index.js.map