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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 | /**
* Drizzle Cube - Semantic Layer for Drizzle ORM
* Drizzle ORM-first semantic layer with Cube.js compatibility
*/
// Export main classes with Drizzle integration
export { SemanticLayerCompiler } from './compiler'
export { QueryExecutor } from './executor'
// Export unified query building
export { QueryPlanner } from './query-planner'
export { QueryBuilder } from './query-builder'
// Export database executors
export {
createDatabaseExecutor,
createPostgresExecutor,
createSQLiteExecutor,
createMySQLExecutor,
createDuckDBExecutor,
BaseDatabaseExecutor,
PostgresExecutor,
SQLiteExecutor,
MySQLExecutor,
DuckDBExecutor
} from './executors'
// Export cube utilities
export {
resolveSqlExpression,
createMultiCubeContext,
resolveCubeReference,
getJoinType
} from './cube-utils'
// Export cube definitions
export { defineCube } from './cube-utils'
// Export cache utilities
export {
generateCacheKey,
normalizeQuery,
fnv1aHash,
getCubeInvalidationPattern
} from './cache-utils'
// Export cache providers
export { MemoryCacheProvider } from './cache-providers'
// Export AI prompt templates
export {
STEP0_VALIDATION_PROMPT,
SYSTEM_PROMPT_TEMPLATE,
STEP1_SYSTEM_PROMPT,
STEP2_SYSTEM_PROMPT,
buildStep0Prompt,
buildSystemPrompt,
buildStep1Prompt,
buildStep2Prompt,
// Explain analysis prompts
EXPLAIN_ANALYSIS_PROMPT,
buildExplainAnalysisPrompt,
formatCubeSchemaForExplain,
formatExistingIndexes
} from './prompts'
export type { Step0Result, PromptContext, DimensionValues, Step1Result } from './prompts'
// Export AI-ready data layer utilities
export {
discoverCubes,
findBestFieldMatch,
suggestQuery,
validateQuery as aiValidateQuery
} from './ai'
export type {
CubeDiscoveryResult,
DiscoveryOptions,
QuerySuggestion,
ValidationResult as AIValidationResult,
ValidationError as AIValidationError,
ValidationWarning as AIValidationWarning
} from './ai'
// Import types for use in utility functions
import type { DrizzleDatabase } from './types'
import { SemanticLayerCompiler } from './compiler'
// Export all types
export type * from './types'
// Re-export Drizzle SQL type for convenience
export type { SQL } from 'drizzle-orm'
/**
* Create a new semantic layer instance with Drizzle integration
* Use this when you need multiple isolated instances
*/
export function createDrizzleSemanticLayer(options: {
drizzle: DrizzleDatabase
schema?: any
}): SemanticLayerCompiler {
return new SemanticLayerCompiler({
drizzle: options.drizzle,
schema: options.schema
})
} |