Skip to content

Commit

Permalink
feat(projects): add new project types
Browse files Browse the repository at this point in the history
TSP-214
  • Loading branch information
pcoelho-coveo committed Mar 25, 2024
1 parent 0ff623f commit 4a8c525
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions src/resources/Projects/ProjectInterfaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,34 @@ export const projectResourceTypes = [
export type ProjectResourceType = (typeof projectResourceTypes)[number];

export enum ProjectType {
CaseDeflection = 'CASE_DEFLECTION',
Commerce = 'COMMERCE',
CommunityPortal = 'COMMUNITY_PORTAL',
CorporateWebsite = 'CORPORATE_WEBSITE',
EmployeePortal = 'EMPLOYEE_PORTAL',
HrPortal = 'HR_PORTAL',
Intranet = 'INTRANET',
InProductSearch = 'IN_PRODUCT_SEARCH',
Other = 'OTHER',
SupportExperience = 'SUPPORT_EXPERIENCE',
SupportPortal = 'SUPPORT_PORTAL',

/**
* @deprecated
* Use SupportPortal instead
*/
Service = 'SERVICE',

/**
* @deprecated
* Use CorporateWebsite instead
*/
Website = 'WEBSITE',

/**
* @deprecated
* Use Intranet instead
*/
Workplace = 'WORKPLACE',
}

Expand Down

0 comments on commit 4a8c525

Please sign in to comment.