Update categories

Signed-off-by: Bryan Frimin <bryan@getprobo.com>
This commit is contained in:
Bryan Frimin
2025-05-01 15:12:42 -07:00
parent 8b313c2cf4
commit 25c87d4c7b
2 changed files with 107 additions and 432 deletions

View File

@@ -2,6 +2,33 @@
* Type definitions for vendor data
*/
/**
* Category types for vendors
*/
export type VendorCategory =
| 'Cloud monitoring'
| 'Cloud provider'
| 'Collaboration'
| 'Customer support'
| 'Analytics'
| 'Data storage and processing'
| 'Document management'
| 'Employee management'
| 'Engineering'
| 'Finance'
| 'Identity provider'
| 'IT'
| 'Marketing'
| 'Office operations'
| 'Other'
| 'Password management'
| 'Product and design'
| 'Professional services'
| 'Recruiting'
| 'Sales'
| 'Security'
| 'Version control';
/**
* Represents a software vendor or service provider with associated metadata
*/
@@ -43,7 +70,7 @@ export interface Vendor {
description?: string;
/** Primary category for the vendor */
category?: string;
category?: VendorCategory;
/** Security or compliance certifications held by the vendor */
certifications?: string[];