Browse Source

feat(ui): Add DataCategory for processed transactions (#36293)

Megan Heskett 2 years ago
parent
commit
0fecb2f4f6
2 changed files with 2 additions and 0 deletions
  1. 1 0
      static/app/constants/index.tsx
  2. 1 0
      static/app/types/core.tsx

+ 1 - 0
static/app/constants/index.tsx

@@ -214,6 +214,7 @@ export const DATA_CATEGORY_NAMES = {
   [DataCategory.ERRORS]: t('Errors'),
   [DataCategory.TRANSACTIONS]: t('Transactions'),
   [DataCategory.ATTACHMENTS]: t('Attachments'),
+  [DataCategory.TRANSACTIONS_PROCESSED]: t('Processed Transactions'),
 };
 
 // Special Search characters

+ 1 - 0
static/app/types/core.tsx

@@ -72,6 +72,7 @@ export enum DataCategory {
   ERRORS = 'errors',
   TRANSACTIONS = 'transactions',
   ATTACHMENTS = 'attachments',
+  TRANSACTIONS_PROCESSED = 'transactions_processed',
 }
 
 export type EventType = 'error' | 'transaction' | 'attachment';