/** JSDoc * @deprecated Use string literals - if you require type casting, cast to EventStatus type */ export var Status; (function (Status) { /** The status could not be determined. */ Status["Unknown"] = "unknown"; /** The event was skipped due to configuration or callbacks. */ Status["Skipped"] = "skipped"; /** The event was sent to Sentry successfully. */ Status["Success"] = "success"; /** The client is currently rate limited and will try again later. */ Status["RateLimit"] = "rate_limit"; /** The event could not be processed. */ Status["Invalid"] = "invalid"; /** A server-side error occurred during submission. */ Status["Failed"] = "failed"; })(Status || (Status = {})); //# sourceMappingURL=status.js.map