@simonecoelhosfo/optimizely-mcp-server
Version:
Optimizely MCP Server for AI assistants with integrated CLI tools
20 lines • 669 B
TypeScript
/**
* Unified Field Mappings
*
* Centralizes all field name mappings from across the project
* to ensure consistency between different components.
*/
/**
* Comprehensive field synonyms combining all existing mappings
* This is the single source of truth for field name variations
*/
export declare const UNIFIED_FIELD_SYNONYMS: Record<string, string[]>;
/**
* Get all synonyms for a field name
*/
export declare function getFieldSynonyms(fieldName: string): string[];
/**
* Find the canonical field name for a given synonym
*/
export declare function findCanonicalFieldName(synonym: string): string | null;
//# sourceMappingURL=UnifiedFieldMappings.d.ts.map