@514labs/moose-lib 0.6.433 → 0.6.434

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -362,6 +362,32 @@ type ClickHouseTTL<SqlExpression extends string> = {
362
362
  type ClickHouseMaterialized<SqlExpression extends string> = {
363
363
  _clickhouse_materialized?: SqlExpression;
364
364
  };
365
+ /**
366
+ * ClickHouse ALIAS column annotation.
367
+ * The column value is computed on-the-fly at SELECT time and NOT physically stored.
368
+ * Cannot be explicitly inserted by users.
369
+ *
370
+ * @example
371
+ * interface Events {
372
+ * eventTime: DateTime;
373
+ * // Computed at query time, not stored on disk
374
+ * eventDate: Date & ClickHouseAlias<"toDate(event_time)">;
375
+ *
376
+ * firstName: string;
377
+ * lastName: string;
378
+ * // Virtual computed column
379
+ * fullName: string & ClickHouseAlias<"concat(first_name, ' ', last_name)">;
380
+ * }
381
+ *
382
+ * @remarks
383
+ * - ALIAS, MATERIALIZED, and DEFAULT are mutually exclusive
384
+ * - ALIAS columns are NOT stored on disk (saves storage, costs CPU at query time)
385
+ * - Cannot be used in ORDER BY, PRIMARY KEY, or PARTITION BY
386
+ * - Can be combined with ClickHouseCodec (though rarely useful since not stored)
387
+ */
388
+ type ClickHouseAlias<SqlExpression extends string> = {
389
+ _clickhouse_alias?: SqlExpression;
390
+ };
365
391
  /**
366
392
  * See also {@link ClickHouseDefault}
367
393
  *
@@ -2442,4 +2468,4 @@ type SimpleAggregated<AggregationFunction extends string, ArgType = any> = {
2442
2468
  _argType?: ArgType;
2443
2469
  };
2444
2470
 
2445
- export { type ClickHouseInt as $, type Aggregated as A, getSqlResource as B, ClickHouseEngines as C, type DeadLetterModel as D, type EgressConfig as E, type FrameworkApp as F, getWorkflows as G, getWorkflow as H, IngestApi as I, getWebApps as J, getWebApp as K, LifeCycle as L, MaterializedView as M, getView as N, OlapTable as O, getViews as P, getMaterializedView as Q, getMaterializedViews as R, type SimpleAggregated as S, Task as T, type ClickHousePrecision as U, View as V, Workflow as W, type ClickHouseDecimal as X, type ClickHouseByteSize as Y, type ClickHouseFixedStringSize as Z, type ClickHouseFloat as _, type OlapConfig as a, type ClickHouseJson as a0, type LowCardinality as a1, type ClickHouseNamedTuple as a2, type ClickHouseDefault as a3, type ClickHouseTTL as a4, type ClickHouseMaterialized as a5, type WithDefault as a6, type ClickHouseCodec as a7, type DateTime as a8, type DateTime64 as a9, toQueryPreview as aA, getValueFromParameter as aB, createClickhouseParameter as aC, mapToClickHouseType as aD, type MooseUtils as aE, MooseClient as aF, type Column as aG, QueryClient as aH, type DataType as aI, type ClickHousePoint as aJ, type ClickHouseRing as aK, type ClickHouseLineString as aL, type ClickHouseMultiLineString as aM, type ClickHousePolygon as aN, type ClickHouseMultiPolygon as aO, WorkflowClient as aP, getTemporalClient as aQ, ApiHelpers as aR, ConsumptionHelpers as aS, joinQueries as aT, type ConsumerConfig as aU, type TransformConfig as aV, type TaskContext as aW, type TaskConfig as aX, type IngestPipelineConfig as aY, type MaterializedViewConfig as aZ, type DateTimeString as aa, type DateTime64String as ab, type FixedString as ac, type Float32 as ad, type Float64 as ae, type Int8 as af, type Int16 as ag, type Int32 as ah, type Int64 as ai, type UInt8 as aj, type UInt16 as ak, type UInt32 as al, type UInt64 as am, type Decimal as an, type ApiUtil as ao, type ConsumptionUtil as ap, quoteIdentifier as aq, type IdentifierBrandedString as ar, type NonIdentifierBrandedString as as, type Value as at, type RawValue as au, type SqlTemplateTag as av, sql as aw, Sql as ax, toStaticQuery as ay, toQuery as az, type S3QueueTableSettings as b, Stream as c, type StreamConfig as d, type DeadLetter as e, DeadLetterQueue as f, type IngestConfig as g, Api as h, type ApiConfig as i, ConsumptionApi as j, IngestPipeline as k, SqlResource as l, ETLPipeline as m, type ETLPipelineConfig as n, WebApp as o, type WebAppConfig as p, type WebAppHandler as q, getTables as r, getTable as s, getStreams as t, getStream as u, getIngestApis as v, getIngestApi as w, getApis as x, getApi as y, getSqlResources as z };
2471
+ export { type ClickHouseInt as $, type Aggregated as A, getSqlResource as B, ClickHouseEngines as C, type DeadLetterModel as D, type EgressConfig as E, type FrameworkApp as F, getWorkflows as G, getWorkflow as H, IngestApi as I, getWebApps as J, getWebApp as K, LifeCycle as L, MaterializedView as M, getView as N, OlapTable as O, getViews as P, getMaterializedView as Q, getMaterializedViews as R, type SimpleAggregated as S, Task as T, type ClickHousePrecision as U, View as V, Workflow as W, type ClickHouseDecimal as X, type ClickHouseByteSize as Y, type ClickHouseFixedStringSize as Z, type ClickHouseFloat as _, type OlapConfig as a, type ClickHouseJson as a0, type LowCardinality as a1, type ClickHouseNamedTuple as a2, type ClickHouseDefault as a3, type ClickHouseTTL as a4, type ClickHouseMaterialized as a5, type ClickHouseAlias as a6, type WithDefault as a7, type ClickHouseCodec as a8, type DateTime as a9, toQuery as aA, toQueryPreview as aB, getValueFromParameter as aC, createClickhouseParameter as aD, mapToClickHouseType as aE, type MooseUtils as aF, MooseClient as aG, type Column as aH, QueryClient as aI, type DataType as aJ, type ClickHousePoint as aK, type ClickHouseRing as aL, type ClickHouseLineString as aM, type ClickHouseMultiLineString as aN, type ClickHousePolygon as aO, type ClickHouseMultiPolygon as aP, WorkflowClient as aQ, getTemporalClient as aR, ApiHelpers as aS, ConsumptionHelpers as aT, joinQueries as aU, type ConsumerConfig as aV, type TransformConfig as aW, type TaskContext as aX, type TaskConfig as aY, type IngestPipelineConfig as aZ, type MaterializedViewConfig as a_, type DateTime64 as aa, type DateTimeString as ab, type DateTime64String as ac, type FixedString as ad, type Float32 as ae, type Float64 as af, type Int8 as ag, type Int16 as ah, type Int32 as ai, type Int64 as aj, type UInt8 as ak, type UInt16 as al, type UInt32 as am, type UInt64 as an, type Decimal as ao, type ApiUtil as ap, type ConsumptionUtil as aq, quoteIdentifier as ar, type IdentifierBrandedString as as, type NonIdentifierBrandedString as at, type Value as au, type RawValue as av, type SqlTemplateTag as aw, sql as ax, Sql as ay, toStaticQuery as az, type S3QueueTableSettings as b, Stream as c, type StreamConfig as d, type DeadLetter as e, DeadLetterQueue as f, type IngestConfig as g, Api as h, type ApiConfig as i, ConsumptionApi as j, IngestPipeline as k, SqlResource as l, ETLPipeline as m, type ETLPipelineConfig as n, WebApp as o, type WebAppConfig as p, type WebAppHandler as q, getTables as r, getTable as s, getStreams as t, getStream as u, getIngestApis as v, getIngestApi as w, getApis as x, getApi as y, getSqlResources as z };
@@ -362,6 +362,32 @@ type ClickHouseTTL<SqlExpression extends string> = {
362
362
  type ClickHouseMaterialized<SqlExpression extends string> = {
363
363
  _clickhouse_materialized?: SqlExpression;
364
364
  };
365
+ /**
366
+ * ClickHouse ALIAS column annotation.
367
+ * The column value is computed on-the-fly at SELECT time and NOT physically stored.
368
+ * Cannot be explicitly inserted by users.
369
+ *
370
+ * @example
371
+ * interface Events {
372
+ * eventTime: DateTime;
373
+ * // Computed at query time, not stored on disk
374
+ * eventDate: Date & ClickHouseAlias<"toDate(event_time)">;
375
+ *
376
+ * firstName: string;
377
+ * lastName: string;
378
+ * // Virtual computed column
379
+ * fullName: string & ClickHouseAlias<"concat(first_name, ' ', last_name)">;
380
+ * }
381
+ *
382
+ * @remarks
383
+ * - ALIAS, MATERIALIZED, and DEFAULT are mutually exclusive
384
+ * - ALIAS columns are NOT stored on disk (saves storage, costs CPU at query time)
385
+ * - Cannot be used in ORDER BY, PRIMARY KEY, or PARTITION BY
386
+ * - Can be combined with ClickHouseCodec (though rarely useful since not stored)
387
+ */
388
+ type ClickHouseAlias<SqlExpression extends string> = {
389
+ _clickhouse_alias?: SqlExpression;
390
+ };
365
391
  /**
366
392
  * See also {@link ClickHouseDefault}
367
393
  *
@@ -2442,4 +2468,4 @@ type SimpleAggregated<AggregationFunction extends string, ArgType = any> = {
2442
2468
  _argType?: ArgType;
2443
2469
  };
2444
2470
 
2445
- export { type ClickHouseInt as $, type Aggregated as A, getSqlResource as B, ClickHouseEngines as C, type DeadLetterModel as D, type EgressConfig as E, type FrameworkApp as F, getWorkflows as G, getWorkflow as H, IngestApi as I, getWebApps as J, getWebApp as K, LifeCycle as L, MaterializedView as M, getView as N, OlapTable as O, getViews as P, getMaterializedView as Q, getMaterializedViews as R, type SimpleAggregated as S, Task as T, type ClickHousePrecision as U, View as V, Workflow as W, type ClickHouseDecimal as X, type ClickHouseByteSize as Y, type ClickHouseFixedStringSize as Z, type ClickHouseFloat as _, type OlapConfig as a, type ClickHouseJson as a0, type LowCardinality as a1, type ClickHouseNamedTuple as a2, type ClickHouseDefault as a3, type ClickHouseTTL as a4, type ClickHouseMaterialized as a5, type WithDefault as a6, type ClickHouseCodec as a7, type DateTime as a8, type DateTime64 as a9, toQueryPreview as aA, getValueFromParameter as aB, createClickhouseParameter as aC, mapToClickHouseType as aD, type MooseUtils as aE, MooseClient as aF, type Column as aG, QueryClient as aH, type DataType as aI, type ClickHousePoint as aJ, type ClickHouseRing as aK, type ClickHouseLineString as aL, type ClickHouseMultiLineString as aM, type ClickHousePolygon as aN, type ClickHouseMultiPolygon as aO, WorkflowClient as aP, getTemporalClient as aQ, ApiHelpers as aR, ConsumptionHelpers as aS, joinQueries as aT, type ConsumerConfig as aU, type TransformConfig as aV, type TaskContext as aW, type TaskConfig as aX, type IngestPipelineConfig as aY, type MaterializedViewConfig as aZ, type DateTimeString as aa, type DateTime64String as ab, type FixedString as ac, type Float32 as ad, type Float64 as ae, type Int8 as af, type Int16 as ag, type Int32 as ah, type Int64 as ai, type UInt8 as aj, type UInt16 as ak, type UInt32 as al, type UInt64 as am, type Decimal as an, type ApiUtil as ao, type ConsumptionUtil as ap, quoteIdentifier as aq, type IdentifierBrandedString as ar, type NonIdentifierBrandedString as as, type Value as at, type RawValue as au, type SqlTemplateTag as av, sql as aw, Sql as ax, toStaticQuery as ay, toQuery as az, type S3QueueTableSettings as b, Stream as c, type StreamConfig as d, type DeadLetter as e, DeadLetterQueue as f, type IngestConfig as g, Api as h, type ApiConfig as i, ConsumptionApi as j, IngestPipeline as k, SqlResource as l, ETLPipeline as m, type ETLPipelineConfig as n, WebApp as o, type WebAppConfig as p, type WebAppHandler as q, getTables as r, getTable as s, getStreams as t, getStream as u, getIngestApis as v, getIngestApi as w, getApis as x, getApi as y, getSqlResources as z };
2471
+ export { type ClickHouseInt as $, type Aggregated as A, getSqlResource as B, ClickHouseEngines as C, type DeadLetterModel as D, type EgressConfig as E, type FrameworkApp as F, getWorkflows as G, getWorkflow as H, IngestApi as I, getWebApps as J, getWebApp as K, LifeCycle as L, MaterializedView as M, getView as N, OlapTable as O, getViews as P, getMaterializedView as Q, getMaterializedViews as R, type SimpleAggregated as S, Task as T, type ClickHousePrecision as U, View as V, Workflow as W, type ClickHouseDecimal as X, type ClickHouseByteSize as Y, type ClickHouseFixedStringSize as Z, type ClickHouseFloat as _, type OlapConfig as a, type ClickHouseJson as a0, type LowCardinality as a1, type ClickHouseNamedTuple as a2, type ClickHouseDefault as a3, type ClickHouseTTL as a4, type ClickHouseMaterialized as a5, type ClickHouseAlias as a6, type WithDefault as a7, type ClickHouseCodec as a8, type DateTime as a9, toQuery as aA, toQueryPreview as aB, getValueFromParameter as aC, createClickhouseParameter as aD, mapToClickHouseType as aE, type MooseUtils as aF, MooseClient as aG, type Column as aH, QueryClient as aI, type DataType as aJ, type ClickHousePoint as aK, type ClickHouseRing as aL, type ClickHouseLineString as aM, type ClickHouseMultiLineString as aN, type ClickHousePolygon as aO, type ClickHouseMultiPolygon as aP, WorkflowClient as aQ, getTemporalClient as aR, ApiHelpers as aS, ConsumptionHelpers as aT, joinQueries as aU, type ConsumerConfig as aV, type TransformConfig as aW, type TaskContext as aX, type TaskConfig as aY, type IngestPipelineConfig as aZ, type MaterializedViewConfig as a_, type DateTime64 as aa, type DateTimeString as ab, type DateTime64String as ac, type FixedString as ad, type Float32 as ae, type Float64 as af, type Int8 as ag, type Int16 as ah, type Int32 as ai, type Int64 as aj, type UInt8 as ak, type UInt16 as al, type UInt32 as am, type UInt64 as an, type Decimal as ao, type ApiUtil as ap, type ConsumptionUtil as aq, quoteIdentifier as ar, type IdentifierBrandedString as as, type NonIdentifierBrandedString as at, type Value as au, type RawValue as av, type SqlTemplateTag as aw, sql as ax, Sql as ay, toStaticQuery as az, type S3QueueTableSettings as b, Stream as c, type StreamConfig as d, type DeadLetter as e, DeadLetterQueue as f, type IngestConfig as g, Api as h, type ApiConfig as i, ConsumptionApi as j, IngestPipeline as k, SqlResource as l, ETLPipeline as m, type ETLPipelineConfig as n, WebApp as o, type WebAppConfig as p, type WebAppHandler as q, getTables as r, getTable as s, getStreams as t, getStream as u, getIngestApis as v, getIngestApi as w, getApis as x, getApi as y, getSqlResources as z };
package/dist/index.d.mts CHANGED
@@ -1,8 +1,8 @@
1
1
  export { JWT, Key } from './browserCompatible.mjs';
2
2
  import * as _clickhouse_client from '@clickhouse/client';
3
3
  import { KafkaJS } from '@514labs/kafka-javascript';
4
- import { aE as MooseUtils, aF as MooseClient, ax as Sql, O as OlapTable, aG as Column, aH as QueryClient, aI as DataType } from './index-Cxd3zrUS.mjs';
5
- export { A as Aggregated, h as Api, i as ApiConfig, aR as ApiHelpers, ao as ApiUtil, Y as ClickHouseByteSize, a7 as ClickHouseCodec, X as ClickHouseDecimal, a3 as ClickHouseDefault, C as ClickHouseEngines, Z as ClickHouseFixedStringSize, _ as ClickHouseFloat, $ as ClickHouseInt, a0 as ClickHouseJson, aL as ClickHouseLineString, a5 as ClickHouseMaterialized, aM as ClickHouseMultiLineString, aO as ClickHouseMultiPolygon, a2 as ClickHouseNamedTuple, aJ as ClickHousePoint, aN as ClickHousePolygon, U as ClickHousePrecision, aK as ClickHouseRing, a4 as ClickHouseTTL, j as ConsumptionApi, aS as ConsumptionHelpers, ap as ConsumptionUtil, a8 as DateTime, a9 as DateTime64, ab as DateTime64String, aa as DateTimeString, e as DeadLetter, D as DeadLetterModel, f as DeadLetterQueue, an as Decimal, m as ETLPipeline, n as ETLPipelineConfig, E as EgressConfig, ac as FixedString, ad as Float32, ae as Float64, F as FrameworkApp, ar as IdentifierBrandedString, I as IngestApi, g as IngestConfig, k as IngestPipeline, ag as Int16, ah as Int32, ai as Int64, af as Int8, L as LifeCycle, a1 as LowCardinality, M as MaterializedView, as as NonIdentifierBrandedString, a as OlapConfig, au as RawValue, b as S3QueueTableSettings, S as SimpleAggregated, l as SqlResource, av as SqlTemplateTag, c as Stream, d as StreamConfig, T as Task, ak as UInt16, al as UInt32, am as UInt64, aj as UInt8, at as Value, V as View, o as WebApp, p as WebAppConfig, q as WebAppHandler, a6 as WithDefault, W as Workflow, aP as WorkflowClient, aC as createClickhouseParameter, y as getApi, x as getApis, w as getIngestApi, v as getIngestApis, Q as getMaterializedView, R as getMaterializedViews, B as getSqlResource, z as getSqlResources, u as getStream, t as getStreams, s as getTable, r as getTables, aQ as getTemporalClient, aB as getValueFromParameter, N as getView, P as getViews, K as getWebApp, J as getWebApps, H as getWorkflow, G as getWorkflows, aT as joinQueries, aD as mapToClickHouseType, aq as quoteIdentifier, aw as sql, az as toQuery, aA as toQueryPreview, ay as toStaticQuery } from './index-Cxd3zrUS.mjs';
4
+ import { aF as MooseUtils, aG as MooseClient, ay as Sql, O as OlapTable, aH as Column, aI as QueryClient, aJ as DataType } from './index-DaI1orpy.mjs';
5
+ export { A as Aggregated, h as Api, i as ApiConfig, aS as ApiHelpers, ap as ApiUtil, a6 as ClickHouseAlias, Y as ClickHouseByteSize, a8 as ClickHouseCodec, X as ClickHouseDecimal, a3 as ClickHouseDefault, C as ClickHouseEngines, Z as ClickHouseFixedStringSize, _ as ClickHouseFloat, $ as ClickHouseInt, a0 as ClickHouseJson, aM as ClickHouseLineString, a5 as ClickHouseMaterialized, aN as ClickHouseMultiLineString, aP as ClickHouseMultiPolygon, a2 as ClickHouseNamedTuple, aK as ClickHousePoint, aO as ClickHousePolygon, U as ClickHousePrecision, aL as ClickHouseRing, a4 as ClickHouseTTL, j as ConsumptionApi, aT as ConsumptionHelpers, aq as ConsumptionUtil, a9 as DateTime, aa as DateTime64, ac as DateTime64String, ab as DateTimeString, e as DeadLetter, D as DeadLetterModel, f as DeadLetterQueue, ao as Decimal, m as ETLPipeline, n as ETLPipelineConfig, E as EgressConfig, ad as FixedString, ae as Float32, af as Float64, F as FrameworkApp, as as IdentifierBrandedString, I as IngestApi, g as IngestConfig, k as IngestPipeline, ah as Int16, ai as Int32, aj as Int64, ag as Int8, L as LifeCycle, a1 as LowCardinality, M as MaterializedView, at as NonIdentifierBrandedString, a as OlapConfig, av as RawValue, b as S3QueueTableSettings, S as SimpleAggregated, l as SqlResource, aw as SqlTemplateTag, c as Stream, d as StreamConfig, T as Task, al as UInt16, am as UInt32, an as UInt64, ak as UInt8, au as Value, V as View, o as WebApp, p as WebAppConfig, q as WebAppHandler, a7 as WithDefault, W as Workflow, aQ as WorkflowClient, aD as createClickhouseParameter, y as getApi, x as getApis, w as getIngestApi, v as getIngestApis, Q as getMaterializedView, R as getMaterializedViews, B as getSqlResource, z as getSqlResources, u as getStream, t as getStreams, s as getTable, r as getTables, aR as getTemporalClient, aC as getValueFromParameter, N as getView, P as getViews, K as getWebApp, J as getWebApps, H as getWorkflow, G as getWorkflows, aU as joinQueries, aE as mapToClickHouseType, ar as quoteIdentifier, ax as sql, aA as toQuery, aB as toQueryPreview, az as toStaticQuery } from './index-DaI1orpy.mjs';
6
6
  import http from 'http';
7
7
  import { IsTuple } from 'typia/lib/typings/IsTuple';
8
8
  import { Readable } from 'node:stream';
package/dist/index.d.ts CHANGED
@@ -1,8 +1,8 @@
1
1
  export { JWT, Key } from './browserCompatible.js';
2
2
  import * as _clickhouse_client from '@clickhouse/client';
3
3
  import { KafkaJS } from '@514labs/kafka-javascript';
4
- import { aE as MooseUtils, aF as MooseClient, ax as Sql, O as OlapTable, aG as Column, aH as QueryClient, aI as DataType } from './index-Cxd3zrUS.js';
5
- export { A as Aggregated, h as Api, i as ApiConfig, aR as ApiHelpers, ao as ApiUtil, Y as ClickHouseByteSize, a7 as ClickHouseCodec, X as ClickHouseDecimal, a3 as ClickHouseDefault, C as ClickHouseEngines, Z as ClickHouseFixedStringSize, _ as ClickHouseFloat, $ as ClickHouseInt, a0 as ClickHouseJson, aL as ClickHouseLineString, a5 as ClickHouseMaterialized, aM as ClickHouseMultiLineString, aO as ClickHouseMultiPolygon, a2 as ClickHouseNamedTuple, aJ as ClickHousePoint, aN as ClickHousePolygon, U as ClickHousePrecision, aK as ClickHouseRing, a4 as ClickHouseTTL, j as ConsumptionApi, aS as ConsumptionHelpers, ap as ConsumptionUtil, a8 as DateTime, a9 as DateTime64, ab as DateTime64String, aa as DateTimeString, e as DeadLetter, D as DeadLetterModel, f as DeadLetterQueue, an as Decimal, m as ETLPipeline, n as ETLPipelineConfig, E as EgressConfig, ac as FixedString, ad as Float32, ae as Float64, F as FrameworkApp, ar as IdentifierBrandedString, I as IngestApi, g as IngestConfig, k as IngestPipeline, ag as Int16, ah as Int32, ai as Int64, af as Int8, L as LifeCycle, a1 as LowCardinality, M as MaterializedView, as as NonIdentifierBrandedString, a as OlapConfig, au as RawValue, b as S3QueueTableSettings, S as SimpleAggregated, l as SqlResource, av as SqlTemplateTag, c as Stream, d as StreamConfig, T as Task, ak as UInt16, al as UInt32, am as UInt64, aj as UInt8, at as Value, V as View, o as WebApp, p as WebAppConfig, q as WebAppHandler, a6 as WithDefault, W as Workflow, aP as WorkflowClient, aC as createClickhouseParameter, y as getApi, x as getApis, w as getIngestApi, v as getIngestApis, Q as getMaterializedView, R as getMaterializedViews, B as getSqlResource, z as getSqlResources, u as getStream, t as getStreams, s as getTable, r as getTables, aQ as getTemporalClient, aB as getValueFromParameter, N as getView, P as getViews, K as getWebApp, J as getWebApps, H as getWorkflow, G as getWorkflows, aT as joinQueries, aD as mapToClickHouseType, aq as quoteIdentifier, aw as sql, az as toQuery, aA as toQueryPreview, ay as toStaticQuery } from './index-Cxd3zrUS.js';
4
+ import { aF as MooseUtils, aG as MooseClient, ay as Sql, O as OlapTable, aH as Column, aI as QueryClient, aJ as DataType } from './index-DaI1orpy.js';
5
+ export { A as Aggregated, h as Api, i as ApiConfig, aS as ApiHelpers, ap as ApiUtil, a6 as ClickHouseAlias, Y as ClickHouseByteSize, a8 as ClickHouseCodec, X as ClickHouseDecimal, a3 as ClickHouseDefault, C as ClickHouseEngines, Z as ClickHouseFixedStringSize, _ as ClickHouseFloat, $ as ClickHouseInt, a0 as ClickHouseJson, aM as ClickHouseLineString, a5 as ClickHouseMaterialized, aN as ClickHouseMultiLineString, aP as ClickHouseMultiPolygon, a2 as ClickHouseNamedTuple, aK as ClickHousePoint, aO as ClickHousePolygon, U as ClickHousePrecision, aL as ClickHouseRing, a4 as ClickHouseTTL, j as ConsumptionApi, aT as ConsumptionHelpers, aq as ConsumptionUtil, a9 as DateTime, aa as DateTime64, ac as DateTime64String, ab as DateTimeString, e as DeadLetter, D as DeadLetterModel, f as DeadLetterQueue, ao as Decimal, m as ETLPipeline, n as ETLPipelineConfig, E as EgressConfig, ad as FixedString, ae as Float32, af as Float64, F as FrameworkApp, as as IdentifierBrandedString, I as IngestApi, g as IngestConfig, k as IngestPipeline, ah as Int16, ai as Int32, aj as Int64, ag as Int8, L as LifeCycle, a1 as LowCardinality, M as MaterializedView, at as NonIdentifierBrandedString, a as OlapConfig, av as RawValue, b as S3QueueTableSettings, S as SimpleAggregated, l as SqlResource, aw as SqlTemplateTag, c as Stream, d as StreamConfig, T as Task, al as UInt16, am as UInt32, an as UInt64, ak as UInt8, au as Value, V as View, o as WebApp, p as WebAppConfig, q as WebAppHandler, a7 as WithDefault, W as Workflow, aQ as WorkflowClient, aD as createClickhouseParameter, y as getApi, x as getApis, w as getIngestApi, v as getIngestApis, Q as getMaterializedView, R as getMaterializedViews, B as getSqlResource, z as getSqlResources, u as getStream, t as getStreams, s as getTable, r as getTables, aR as getTemporalClient, aC as getValueFromParameter, N as getView, P as getViews, K as getWebApp, J as getWebApps, H as getWorkflow, G as getWorkflows, aU as joinQueries, aE as mapToClickHouseType, ar as quoteIdentifier, ax as sql, aA as toQuery, aB as toQueryPreview, az as toStaticQuery } from './index-DaI1orpy.js';
6
6
  import http from 'http';
7
7
  import { IsTuple } from 'typia/lib/typings/IsTuple';
8
8
  import { Readable } from 'node:stream';