From b496981a51c152891493aa81edcdb23659c8ff3a Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Tue, 24 Feb 2026 16:24:32 +0000 Subject: [PATCH] feat: add missing falcon connector category labels (hrisLegacy, stackOne) Added labels for 'hrisLegacy' and 'stackOne' categories to support falcon connector categories that can be passed via the Create Connect Session API. These categories are now properly displayed with user-friendly labels in the hub UI. The hub already supports filtering based on categories embedded in the session token - this change ensures all supported categories have proper display labels. Co-authored-by: Guillaume --- src/shared/categories.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/shared/categories.ts b/src/shared/categories.ts index 7e109c2..af0022f 100644 --- a/src/shared/categories.ts +++ b/src/shared/categories.ts @@ -2,6 +2,7 @@ export const CATEGORIES = [ 'ats', 'crm', 'hris', + 'hrisLegacy', 'marketing', 'iam', 'lms', @@ -11,6 +12,7 @@ export const CATEGORIES = [ 'messaging', 'accounting', 'scheduling', + 'stackOne', ]; export const CATEGORIES_WITH_LABELS = [ @@ -18,6 +20,10 @@ export const CATEGORIES_WITH_LABELS = [ label: 'HRIS', value: 'hris', }, + { + label: 'HRIS Legacy', + value: 'hrisLegacy', + }, { label: 'ATS', value: 'ats', @@ -62,4 +68,8 @@ export const CATEGORIES_WITH_LABELS = [ label: 'Scheduling', value: 'scheduling', }, + { + label: 'StackOne', + value: 'stackOne', + }, ];