Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | /**
* AI-Ready Data Layer Utilities
* Schema-aware intelligence for AI agents - no server-side LLM required
*/
export {
discoverCubes,
findBestFieldMatch,
type CubeDiscoveryResult,
type DiscoveryOptions
} from './discovery'
export {
suggestQuery,
type QuerySuggestion
} from './suggestion'
export {
validateQuery,
type ValidationResult,
type ValidationError,
type ValidationWarning
} from './validation'
export {
QUERY_SCHEMAS,
type QuerySchemas
} from './schemas'
export {
MCP_PROMPTS,
MCP_GUIDE_PROMPT,
QUERY_RULES_PROMPT,
QUERY_BUILDING_PROMPT,
DATE_FILTERING_PROMPT,
getDefaultMCPPrompts,
type MCPPrompt
} from './mcp-prompts'
|