feat(core): introduce typed ClickHouse table API, query builder, and result handling; enhance HTTP client and add schema evolution, batch inserts and mutations; update docs/tests and bump deps

This commit is contained in:
2026-02-27 10:17:32 +00:00
parent 26449e9171
commit aace102868
17 changed files with 7000 additions and 1886 deletions

View File

@@ -1,2 +1,14 @@
// Core
export * from './smartclickhouse.classes.smartclickhouse.js';
export * from './smartclickhouse.classes.clickhousetable.js';
export * from './smartclickhouse.classes.httpclient.js';
// Query & Results
export * from './smartclickhouse.classes.querybuilder.js';
export * from './smartclickhouse.classes.resultset.js';
// Time Data Table (backward compat)
export * from './smartclickhouse.classes.timedatatable.js';
// Types
export * from './smartclickhouse.types.js';