From 253f29e6dbe785f3140a06e21e56394a7055083b Mon Sep 17 00:00:00 2001 From: Abhijeet Prasad Date: Fri, 8 Apr 2022 10:00:02 -0400 Subject: [PATCH] ref(types): Delete Status enum (#4891) --- packages/types/src/status.ts | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 packages/types/src/status.ts diff --git a/packages/types/src/status.ts b/packages/types/src/status.ts deleted file mode 100644 index a80cd00b97e7..000000000000 --- a/packages/types/src/status.ts +++ /dev/null @@ -1,17 +0,0 @@ -/** JSDoc - * @deprecated Use string literals - if you require type casting, cast to EventStatus type - */ -export enum Status { - /** The status could not be determined. */ - Unknown = 'unknown', - /** The event was skipped due to configuration or callbacks. */ - Skipped = 'skipped', - /** The event was sent to Sentry successfully. */ - Success = 'success', - /** The client is currently rate limited and will try again later. */ - RateLimit = 'rate_limit', - /** The event could not be processed. */ - Invalid = 'invalid', - /** A server-side error occurred during submission. */ - Failed = 'failed', -}