mirror of
https://github.com/Kaelio/ktx.git
synced 2026-07-22 11:51:01 +02:00
* Improve schema setup and Notion ingest UX * Handle Postgres network scan failures * WIP: save local changes before main merge * Refine setup prompt choices * Tighten ingest reconciliation guidance * Commit setup config updates * Canonicalize unmapped fallback details * Count reconciliation actions in reports * Harden semantic layer source validation * Return wiki content after edits * Validate SL sources against manifests * Validate wiki refs before writes * Simplify CLI next steps * Clarify agent setup summary * Surface dbt target SL sources * Recover SL write fallbacks * Preserve failed context build metadata * Track raw paths for ingest actions * test(cli): update seeded demo expectations * fix(ingest): scope fallback recovery checks * fix(sl): tighten source validation guards * fix(wiki): ignore empty embedding vectors * Improve Notion ingest UX * Enforce flat wiki keys * test(context): update wiki key assertion --------- Co-authored-by: Andrey Avtomonov <andreybavt@gmail.com>
28 lines
1.1 KiB
TypeScript
28 lines
1.1 KiB
TypeScript
export type {
|
|
KtxSqlQueryExecutionInput,
|
|
KtxSqlQueryExecutionResult,
|
|
KtxSqlQueryExecutorPort,
|
|
} from './query-executor.js';
|
|
export { createDefaultLocalQueryExecutor, type DefaultLocalQueryExecutorOptions } from './local-query-executor.js';
|
|
export { normalizeQueryRows } from './query-executor.js';
|
|
export { createPostgresQueryExecutor } from './postgres-query-executor.js';
|
|
export { assertReadOnlySql, limitSqlForExecution } from './read-only-sql.js';
|
|
export { createSqliteQueryExecutor, sqliteDatabasePathFromConnection } from './sqlite-query-executor.js';
|
|
export { connectionTypeSchema, type ConnectionType } from './connection-type.js';
|
|
export {
|
|
localConnectionInfoFromConfig,
|
|
localConnectionToWarehouseDescriptor,
|
|
localConnectionTypeForConfig,
|
|
type LocalConnectionInfo,
|
|
type LocalWarehouseDescriptor,
|
|
} from './local-warehouse-descriptor.js';
|
|
export {
|
|
KTX_NOTION_ORG_KNOWLEDGE_WARNING,
|
|
notionConnectionToPullConfig,
|
|
parseNotionConnectionConfig,
|
|
redactNotionConnectionConfig,
|
|
resolveNotionConnectionAuthToken,
|
|
resolveNotionAuthToken,
|
|
type KtxNotionConnectionConfig,
|
|
type RedactedKtxNotionConnectionConfig,
|
|
} from './notion-config.js';
|