UNPKG

@simonecoelhosfo/optimizely-mcp-server

Version:

Optimizely MCP Server for AI assistants with integrated CLI tools

23 lines 705 B
/** * Field Pattern Definitions for RobustIntentParser * * IMPLEMENTATION STATUS: * COMPLETE: Common fields and entity-specific fields (50+ fields) * * Last Updated: July 3, 2025 */ import { FieldPattern, EntityType } from '../types/index.js'; export declare const FIELD_PATTERNS: Record<string, FieldPattern>; /** * Find matching fields in a query */ export declare function findFields(query: string, primaryEntity?: EntityType): Array<{ field: string; confidence: number; match: string; }>; /** * Get canonical field name from various aliases */ export declare function getCanonicalFieldName(field: string, entity?: EntityType): string; //# sourceMappingURL=FieldPatterns.d.ts.map