@514labs/moose-lib 0.6.266 → 0.6.267-ci-6-g3edfc990
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.
- package/dist/{browserCompatible-fk6xPzoB.d.mts → browserCompatible-15NCyT1P.d.mts} +1 -1
- package/dist/{browserCompatible-CpjUXotI.d.ts → browserCompatible-BUKAJYbj.d.ts} +1 -1
- package/dist/browserCompatible.d.mts +2 -2
- package/dist/browserCompatible.d.ts +2 -2
- package/dist/browserCompatible.js.map +1 -1
- package/dist/browserCompatible.mjs.map +1 -1
- package/dist/dmv2/index.d.mts +1 -1
- package/dist/dmv2/index.d.ts +1 -1
- package/dist/dmv2/index.js.map +1 -1
- package/dist/dmv2/index.mjs.map +1 -1
- package/dist/{index-Dd3ZmpTq.d.mts → index-BtkwFbT9.d.mts} +43 -2
- package/dist/{index-Dd3ZmpTq.d.ts → index-BtkwFbT9.d.ts} +43 -2
- package/dist/index.d.mts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -0
- package/dist/index.mjs.map +1 -1
- package/dist/moose-runner.js +35 -1
- package/dist/moose-runner.js.map +1 -1
- package/dist/moose-runner.mjs +35 -1
- package/dist/moose-runner.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -201,7 +201,9 @@ declare enum ClickHouseEngines {
|
|
|
201
201
|
ReplicatedMergeTree = "ReplicatedMergeTree",
|
|
202
202
|
ReplicatedReplacingMergeTree = "ReplicatedReplacingMergeTree",
|
|
203
203
|
ReplicatedAggregatingMergeTree = "ReplicatedAggregatingMergeTree",
|
|
204
|
-
ReplicatedSummingMergeTree = "ReplicatedSummingMergeTree"
|
|
204
|
+
ReplicatedSummingMergeTree = "ReplicatedSummingMergeTree",
|
|
205
|
+
ReplicatedCollapsingMergeTree = "ReplicatedCollapsingMergeTree",
|
|
206
|
+
ReplicatedVersionedCollapsingMergeTree = "ReplicatedVersionedCollapsingMergeTree"
|
|
205
207
|
}
|
|
206
208
|
/**
|
|
207
209
|
* Drops an existing view if it exists.
|
|
@@ -499,6 +501,23 @@ type SummingMergeTreeConfig<T> = BaseOlapConfig<T> & {
|
|
|
499
501
|
engine: ClickHouseEngines.SummingMergeTree;
|
|
500
502
|
columns?: string[];
|
|
501
503
|
};
|
|
504
|
+
/**
|
|
505
|
+
* Configuration for CollapsingMergeTree engine
|
|
506
|
+
* @template T The data type of the records stored in the table.
|
|
507
|
+
*/
|
|
508
|
+
type CollapsingMergeTreeConfig<T> = BaseOlapConfig<T> & {
|
|
509
|
+
engine: ClickHouseEngines.CollapsingMergeTree;
|
|
510
|
+
sign: keyof T & string;
|
|
511
|
+
};
|
|
512
|
+
/**
|
|
513
|
+
* Configuration for VersionedCollapsingMergeTree engine
|
|
514
|
+
* @template T The data type of the records stored in the table.
|
|
515
|
+
*/
|
|
516
|
+
type VersionedCollapsingMergeTreeConfig<T> = BaseOlapConfig<T> & {
|
|
517
|
+
engine: ClickHouseEngines.VersionedCollapsingMergeTree;
|
|
518
|
+
sign: keyof T & string;
|
|
519
|
+
ver: keyof T & string;
|
|
520
|
+
};
|
|
502
521
|
interface ReplicatedEngineProperties {
|
|
503
522
|
keeperPath?: string;
|
|
504
523
|
replicaName?: string;
|
|
@@ -547,6 +566,28 @@ type ReplicatedAggregatingMergeTreeConfig<T> = Omit<AggregatingMergeTreeConfig<T
|
|
|
547
566
|
type ReplicatedSummingMergeTreeConfig<T> = Omit<SummingMergeTreeConfig<T>, "engine"> & ReplicatedEngineProperties & {
|
|
548
567
|
engine: ClickHouseEngines.ReplicatedSummingMergeTree;
|
|
549
568
|
};
|
|
569
|
+
/**
|
|
570
|
+
* Configuration for ReplicatedCollapsingMergeTree engine
|
|
571
|
+
* @template T The data type of the records stored in the table.
|
|
572
|
+
*
|
|
573
|
+
* Note: keeperPath and replicaName are optional. Omit them for ClickHouse Cloud,
|
|
574
|
+
* which manages replication automatically. For self-hosted with ClickHouse Keeper,
|
|
575
|
+
* provide both parameters or neither (to use server defaults).
|
|
576
|
+
*/
|
|
577
|
+
type ReplicatedCollapsingMergeTreeConfig<T> = Omit<CollapsingMergeTreeConfig<T>, "engine"> & ReplicatedEngineProperties & {
|
|
578
|
+
engine: ClickHouseEngines.ReplicatedCollapsingMergeTree;
|
|
579
|
+
};
|
|
580
|
+
/**
|
|
581
|
+
* Configuration for ReplicatedVersionedCollapsingMergeTree engine
|
|
582
|
+
* @template T The data type of the records stored in the table.
|
|
583
|
+
*
|
|
584
|
+
* Note: keeperPath and replicaName are optional. Omit them for ClickHouse Cloud,
|
|
585
|
+
* which manages replication automatically. For self-hosted with ClickHouse Keeper,
|
|
586
|
+
* provide both parameters or neither (to use server defaults).
|
|
587
|
+
*/
|
|
588
|
+
type ReplicatedVersionedCollapsingMergeTreeConfig<T> = Omit<VersionedCollapsingMergeTreeConfig<T>, "engine"> & ReplicatedEngineProperties & {
|
|
589
|
+
engine: ClickHouseEngines.ReplicatedVersionedCollapsingMergeTree;
|
|
590
|
+
};
|
|
550
591
|
/**
|
|
551
592
|
* Configuration for S3Queue engine - only non-alterable constructor parameters.
|
|
552
593
|
* S3Queue-specific settings like 'mode', 'keeper_path', etc. should be specified
|
|
@@ -719,7 +760,7 @@ type IcebergS3Config<T> = Omit<BaseOlapConfig<T>, "orderByFields" | "orderByExpr
|
|
|
719
760
|
* @template T The data type of the records stored in the table.
|
|
720
761
|
*/
|
|
721
762
|
type LegacyOlapConfig<T> = BaseOlapConfig<T>;
|
|
722
|
-
type EngineConfig<T> = MergeTreeConfig<T> | ReplacingMergeTreeConfig<T> | AggregatingMergeTreeConfig<T> | SummingMergeTreeConfig<T> | ReplicatedMergeTreeConfig<T> | ReplicatedReplacingMergeTreeConfig<T> | ReplicatedAggregatingMergeTreeConfig<T> | ReplicatedSummingMergeTreeConfig<T> | S3QueueConfig<T> | S3Config<T> | BufferConfig<T> | DistributedConfig<T> | IcebergS3Config<T> | KafkaConfig<T>;
|
|
763
|
+
type EngineConfig<T> = MergeTreeConfig<T> | ReplacingMergeTreeConfig<T> | AggregatingMergeTreeConfig<T> | SummingMergeTreeConfig<T> | CollapsingMergeTreeConfig<T> | VersionedCollapsingMergeTreeConfig<T> | ReplicatedMergeTreeConfig<T> | ReplicatedReplacingMergeTreeConfig<T> | ReplicatedAggregatingMergeTreeConfig<T> | ReplicatedSummingMergeTreeConfig<T> | ReplicatedCollapsingMergeTreeConfig<T> | ReplicatedVersionedCollapsingMergeTreeConfig<T> | S3QueueConfig<T> | S3Config<T> | BufferConfig<T> | DistributedConfig<T> | IcebergS3Config<T> | KafkaConfig<T>;
|
|
723
764
|
/**
|
|
724
765
|
* Union of all engine-specific configurations (new API)
|
|
725
766
|
* @template T The data type of the records stored in the table.
|
|
@@ -201,7 +201,9 @@ declare enum ClickHouseEngines {
|
|
|
201
201
|
ReplicatedMergeTree = "ReplicatedMergeTree",
|
|
202
202
|
ReplicatedReplacingMergeTree = "ReplicatedReplacingMergeTree",
|
|
203
203
|
ReplicatedAggregatingMergeTree = "ReplicatedAggregatingMergeTree",
|
|
204
|
-
ReplicatedSummingMergeTree = "ReplicatedSummingMergeTree"
|
|
204
|
+
ReplicatedSummingMergeTree = "ReplicatedSummingMergeTree",
|
|
205
|
+
ReplicatedCollapsingMergeTree = "ReplicatedCollapsingMergeTree",
|
|
206
|
+
ReplicatedVersionedCollapsingMergeTree = "ReplicatedVersionedCollapsingMergeTree"
|
|
205
207
|
}
|
|
206
208
|
/**
|
|
207
209
|
* Drops an existing view if it exists.
|
|
@@ -499,6 +501,23 @@ type SummingMergeTreeConfig<T> = BaseOlapConfig<T> & {
|
|
|
499
501
|
engine: ClickHouseEngines.SummingMergeTree;
|
|
500
502
|
columns?: string[];
|
|
501
503
|
};
|
|
504
|
+
/**
|
|
505
|
+
* Configuration for CollapsingMergeTree engine
|
|
506
|
+
* @template T The data type of the records stored in the table.
|
|
507
|
+
*/
|
|
508
|
+
type CollapsingMergeTreeConfig<T> = BaseOlapConfig<T> & {
|
|
509
|
+
engine: ClickHouseEngines.CollapsingMergeTree;
|
|
510
|
+
sign: keyof T & string;
|
|
511
|
+
};
|
|
512
|
+
/**
|
|
513
|
+
* Configuration for VersionedCollapsingMergeTree engine
|
|
514
|
+
* @template T The data type of the records stored in the table.
|
|
515
|
+
*/
|
|
516
|
+
type VersionedCollapsingMergeTreeConfig<T> = BaseOlapConfig<T> & {
|
|
517
|
+
engine: ClickHouseEngines.VersionedCollapsingMergeTree;
|
|
518
|
+
sign: keyof T & string;
|
|
519
|
+
ver: keyof T & string;
|
|
520
|
+
};
|
|
502
521
|
interface ReplicatedEngineProperties {
|
|
503
522
|
keeperPath?: string;
|
|
504
523
|
replicaName?: string;
|
|
@@ -547,6 +566,28 @@ type ReplicatedAggregatingMergeTreeConfig<T> = Omit<AggregatingMergeTreeConfig<T
|
|
|
547
566
|
type ReplicatedSummingMergeTreeConfig<T> = Omit<SummingMergeTreeConfig<T>, "engine"> & ReplicatedEngineProperties & {
|
|
548
567
|
engine: ClickHouseEngines.ReplicatedSummingMergeTree;
|
|
549
568
|
};
|
|
569
|
+
/**
|
|
570
|
+
* Configuration for ReplicatedCollapsingMergeTree engine
|
|
571
|
+
* @template T The data type of the records stored in the table.
|
|
572
|
+
*
|
|
573
|
+
* Note: keeperPath and replicaName are optional. Omit them for ClickHouse Cloud,
|
|
574
|
+
* which manages replication automatically. For self-hosted with ClickHouse Keeper,
|
|
575
|
+
* provide both parameters or neither (to use server defaults).
|
|
576
|
+
*/
|
|
577
|
+
type ReplicatedCollapsingMergeTreeConfig<T> = Omit<CollapsingMergeTreeConfig<T>, "engine"> & ReplicatedEngineProperties & {
|
|
578
|
+
engine: ClickHouseEngines.ReplicatedCollapsingMergeTree;
|
|
579
|
+
};
|
|
580
|
+
/**
|
|
581
|
+
* Configuration for ReplicatedVersionedCollapsingMergeTree engine
|
|
582
|
+
* @template T The data type of the records stored in the table.
|
|
583
|
+
*
|
|
584
|
+
* Note: keeperPath and replicaName are optional. Omit them for ClickHouse Cloud,
|
|
585
|
+
* which manages replication automatically. For self-hosted with ClickHouse Keeper,
|
|
586
|
+
* provide both parameters or neither (to use server defaults).
|
|
587
|
+
*/
|
|
588
|
+
type ReplicatedVersionedCollapsingMergeTreeConfig<T> = Omit<VersionedCollapsingMergeTreeConfig<T>, "engine"> & ReplicatedEngineProperties & {
|
|
589
|
+
engine: ClickHouseEngines.ReplicatedVersionedCollapsingMergeTree;
|
|
590
|
+
};
|
|
550
591
|
/**
|
|
551
592
|
* Configuration for S3Queue engine - only non-alterable constructor parameters.
|
|
552
593
|
* S3Queue-specific settings like 'mode', 'keeper_path', etc. should be specified
|
|
@@ -719,7 +760,7 @@ type IcebergS3Config<T> = Omit<BaseOlapConfig<T>, "orderByFields" | "orderByExpr
|
|
|
719
760
|
* @template T The data type of the records stored in the table.
|
|
720
761
|
*/
|
|
721
762
|
type LegacyOlapConfig<T> = BaseOlapConfig<T>;
|
|
722
|
-
type EngineConfig<T> = MergeTreeConfig<T> | ReplacingMergeTreeConfig<T> | AggregatingMergeTreeConfig<T> | SummingMergeTreeConfig<T> | ReplicatedMergeTreeConfig<T> | ReplicatedReplacingMergeTreeConfig<T> | ReplicatedAggregatingMergeTreeConfig<T> | ReplicatedSummingMergeTreeConfig<T> | S3QueueConfig<T> | S3Config<T> | BufferConfig<T> | DistributedConfig<T> | IcebergS3Config<T> | KafkaConfig<T>;
|
|
763
|
+
type EngineConfig<T> = MergeTreeConfig<T> | ReplacingMergeTreeConfig<T> | AggregatingMergeTreeConfig<T> | SummingMergeTreeConfig<T> | CollapsingMergeTreeConfig<T> | VersionedCollapsingMergeTreeConfig<T> | ReplicatedMergeTreeConfig<T> | ReplicatedReplacingMergeTreeConfig<T> | ReplicatedAggregatingMergeTreeConfig<T> | ReplicatedSummingMergeTreeConfig<T> | ReplicatedCollapsingMergeTreeConfig<T> | ReplicatedVersionedCollapsingMergeTreeConfig<T> | S3QueueConfig<T> | S3Config<T> | BufferConfig<T> | DistributedConfig<T> | IcebergS3Config<T> | KafkaConfig<T>;
|
|
723
764
|
/**
|
|
724
765
|
* Union of all engine-specific configurations (new API)
|
|
725
766
|
* @template T The data type of the records stored in the table.
|
package/dist/index.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export { C as ClickHouseByteSize, q as ClickHouseCodec, j as ClickHouseDecimal, n as ClickHouseDefault, k as ClickHouseFixedStringSize, l as ClickHouseFloat, a as ClickHouseInt, m as ClickHouseJson, e as ClickHouseLineString, p as ClickHouseMaterialized, f as ClickHouseMultiLineString, h as ClickHouseMultiPolygon, b as ClickHouseNamedTuple, c as ClickHousePoint, g as ClickHousePolygon, i as ClickHousePrecision, d as ClickHouseRing, o as ClickHouseTTL, D as DateTime, r as DateTime64, t as DateTime64String, s as DateTimeString, E as Decimal, F as FixedString, u as Float32, v as Float64, w as Int16, x as Int32, y as Int64, I as Int8, J as JWT, K as Key, L as LowCardinality, z as UInt16, A as UInt32, B as UInt64, U as UInt8, W as WithDefault } from './browserCompatible-
|
|
2
|
-
import { K as ApiUtil, a4 as MooseClient } from './index-
|
|
3
|
-
export { A as Aggregated, h as Api, i as ApiConfig, ad as ApiHelpers, a5 as Blocks, a6 as ClickHouseEngines, C as ConsumptionApi, ae as ConsumptionHelpers, N as ConsumptionUtil, e as DeadLetter, D as DeadLetterModel, f as DeadLetterQueue, l as ETLPipeline, m as ETLPipelineConfig, E as EgressConfig, F as FrameworkApp, Q as IdentifierBrandedString, I as IngestApi, g as IngestConfig, j as IngestPipeline, L as LifeCycle, M as MaterializedView, R as NonIdentifierBrandedString, a as OlapConfig, O as OlapTable, aa as QueryClient, X as RawValue, b as S3QueueTableSettings, S as SimpleAggregated, Z as Sql, k as SqlResource, c as Stream, d as StreamConfig, T as Task, U as Value, V as View, n as WebApp, o as WebAppConfig, p as WebAppHandler, W as Workflow, ab as WorkflowClient, a2 as createClickhouseParameter, a8 as createMaterializedView, a7 as dropView, x as getApi, w as getApis, v as getIngestApi, u as getIngestApis, z as getSqlResource, y as getSqlResources, t as getStream, s as getStreams, r as getTable, q as getTables, ac as getTemporalClient, a1 as getValueFromParameter, J as getWebApp, H as getWebApps, G as getWorkflow, B as getWorkflows, af as joinQueries, a3 as mapToClickHouseType, a9 as populateTable, P as quoteIdentifier, Y as sql, $ as toQuery, a0 as toQueryPreview, _ as toStaticQuery } from './index-
|
|
1
|
+
export { C as ClickHouseByteSize, q as ClickHouseCodec, j as ClickHouseDecimal, n as ClickHouseDefault, k as ClickHouseFixedStringSize, l as ClickHouseFloat, a as ClickHouseInt, m as ClickHouseJson, e as ClickHouseLineString, p as ClickHouseMaterialized, f as ClickHouseMultiLineString, h as ClickHouseMultiPolygon, b as ClickHouseNamedTuple, c as ClickHousePoint, g as ClickHousePolygon, i as ClickHousePrecision, d as ClickHouseRing, o as ClickHouseTTL, D as DateTime, r as DateTime64, t as DateTime64String, s as DateTimeString, E as Decimal, F as FixedString, u as Float32, v as Float64, w as Int16, x as Int32, y as Int64, I as Int8, J as JWT, K as Key, L as LowCardinality, z as UInt16, A as UInt32, B as UInt64, U as UInt8, W as WithDefault } from './browserCompatible-15NCyT1P.mjs';
|
|
2
|
+
import { K as ApiUtil, a4 as MooseClient } from './index-BtkwFbT9.mjs';
|
|
3
|
+
export { A as Aggregated, h as Api, i as ApiConfig, ad as ApiHelpers, a5 as Blocks, a6 as ClickHouseEngines, C as ConsumptionApi, ae as ConsumptionHelpers, N as ConsumptionUtil, e as DeadLetter, D as DeadLetterModel, f as DeadLetterQueue, l as ETLPipeline, m as ETLPipelineConfig, E as EgressConfig, F as FrameworkApp, Q as IdentifierBrandedString, I as IngestApi, g as IngestConfig, j as IngestPipeline, L as LifeCycle, M as MaterializedView, R as NonIdentifierBrandedString, a as OlapConfig, O as OlapTable, aa as QueryClient, X as RawValue, b as S3QueueTableSettings, S as SimpleAggregated, Z as Sql, k as SqlResource, c as Stream, d as StreamConfig, T as Task, U as Value, V as View, n as WebApp, o as WebAppConfig, p as WebAppHandler, W as Workflow, ab as WorkflowClient, a2 as createClickhouseParameter, a8 as createMaterializedView, a7 as dropView, x as getApi, w as getApis, v as getIngestApi, u as getIngestApis, z as getSqlResource, y as getSqlResources, t as getStream, s as getStreams, r as getTable, q as getTables, ac as getTemporalClient, a1 as getValueFromParameter, J as getWebApp, H as getWebApps, G as getWorkflow, B as getWorkflows, af as joinQueries, a3 as mapToClickHouseType, a9 as populateTable, P as quoteIdentifier, Y as sql, $ as toQuery, a0 as toQueryPreview, _ as toStaticQuery } from './index-BtkwFbT9.mjs';
|
|
4
4
|
import * as _clickhouse_client from '@clickhouse/client';
|
|
5
5
|
import { KafkaJS } from '@confluentinc/kafka-javascript';
|
|
6
6
|
import http from 'http';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export { C as ClickHouseByteSize, q as ClickHouseCodec, j as ClickHouseDecimal, n as ClickHouseDefault, k as ClickHouseFixedStringSize, l as ClickHouseFloat, a as ClickHouseInt, m as ClickHouseJson, e as ClickHouseLineString, p as ClickHouseMaterialized, f as ClickHouseMultiLineString, h as ClickHouseMultiPolygon, b as ClickHouseNamedTuple, c as ClickHousePoint, g as ClickHousePolygon, i as ClickHousePrecision, d as ClickHouseRing, o as ClickHouseTTL, D as DateTime, r as DateTime64, t as DateTime64String, s as DateTimeString, E as Decimal, F as FixedString, u as Float32, v as Float64, w as Int16, x as Int32, y as Int64, I as Int8, J as JWT, K as Key, L as LowCardinality, z as UInt16, A as UInt32, B as UInt64, U as UInt8, W as WithDefault } from './browserCompatible-
|
|
2
|
-
import { K as ApiUtil, a4 as MooseClient } from './index-
|
|
3
|
-
export { A as Aggregated, h as Api, i as ApiConfig, ad as ApiHelpers, a5 as Blocks, a6 as ClickHouseEngines, C as ConsumptionApi, ae as ConsumptionHelpers, N as ConsumptionUtil, e as DeadLetter, D as DeadLetterModel, f as DeadLetterQueue, l as ETLPipeline, m as ETLPipelineConfig, E as EgressConfig, F as FrameworkApp, Q as IdentifierBrandedString, I as IngestApi, g as IngestConfig, j as IngestPipeline, L as LifeCycle, M as MaterializedView, R as NonIdentifierBrandedString, a as OlapConfig, O as OlapTable, aa as QueryClient, X as RawValue, b as S3QueueTableSettings, S as SimpleAggregated, Z as Sql, k as SqlResource, c as Stream, d as StreamConfig, T as Task, U as Value, V as View, n as WebApp, o as WebAppConfig, p as WebAppHandler, W as Workflow, ab as WorkflowClient, a2 as createClickhouseParameter, a8 as createMaterializedView, a7 as dropView, x as getApi, w as getApis, v as getIngestApi, u as getIngestApis, z as getSqlResource, y as getSqlResources, t as getStream, s as getStreams, r as getTable, q as getTables, ac as getTemporalClient, a1 as getValueFromParameter, J as getWebApp, H as getWebApps, G as getWorkflow, B as getWorkflows, af as joinQueries, a3 as mapToClickHouseType, a9 as populateTable, P as quoteIdentifier, Y as sql, $ as toQuery, a0 as toQueryPreview, _ as toStaticQuery } from './index-
|
|
1
|
+
export { C as ClickHouseByteSize, q as ClickHouseCodec, j as ClickHouseDecimal, n as ClickHouseDefault, k as ClickHouseFixedStringSize, l as ClickHouseFloat, a as ClickHouseInt, m as ClickHouseJson, e as ClickHouseLineString, p as ClickHouseMaterialized, f as ClickHouseMultiLineString, h as ClickHouseMultiPolygon, b as ClickHouseNamedTuple, c as ClickHousePoint, g as ClickHousePolygon, i as ClickHousePrecision, d as ClickHouseRing, o as ClickHouseTTL, D as DateTime, r as DateTime64, t as DateTime64String, s as DateTimeString, E as Decimal, F as FixedString, u as Float32, v as Float64, w as Int16, x as Int32, y as Int64, I as Int8, J as JWT, K as Key, L as LowCardinality, z as UInt16, A as UInt32, B as UInt64, U as UInt8, W as WithDefault } from './browserCompatible-BUKAJYbj.js';
|
|
2
|
+
import { K as ApiUtil, a4 as MooseClient } from './index-BtkwFbT9.js';
|
|
3
|
+
export { A as Aggregated, h as Api, i as ApiConfig, ad as ApiHelpers, a5 as Blocks, a6 as ClickHouseEngines, C as ConsumptionApi, ae as ConsumptionHelpers, N as ConsumptionUtil, e as DeadLetter, D as DeadLetterModel, f as DeadLetterQueue, l as ETLPipeline, m as ETLPipelineConfig, E as EgressConfig, F as FrameworkApp, Q as IdentifierBrandedString, I as IngestApi, g as IngestConfig, j as IngestPipeline, L as LifeCycle, M as MaterializedView, R as NonIdentifierBrandedString, a as OlapConfig, O as OlapTable, aa as QueryClient, X as RawValue, b as S3QueueTableSettings, S as SimpleAggregated, Z as Sql, k as SqlResource, c as Stream, d as StreamConfig, T as Task, U as Value, V as View, n as WebApp, o as WebAppConfig, p as WebAppHandler, W as Workflow, ab as WorkflowClient, a2 as createClickhouseParameter, a8 as createMaterializedView, a7 as dropView, x as getApi, w as getApis, v as getIngestApi, u as getIngestApis, z as getSqlResource, y as getSqlResources, t as getStream, s as getStreams, r as getTable, q as getTables, ac as getTemporalClient, a1 as getValueFromParameter, J as getWebApp, H as getWebApps, G as getWorkflow, B as getWorkflows, af as joinQueries, a3 as mapToClickHouseType, a9 as populateTable, P as quoteIdentifier, Y as sql, $ as toQuery, a0 as toQueryPreview, _ as toStaticQuery } from './index-BtkwFbT9.js';
|
|
4
4
|
import * as _clickhouse_client from '@clickhouse/client';
|
|
5
5
|
import { KafkaJS } from '@confluentinc/kafka-javascript';
|
|
6
6
|
import http from 'http';
|
package/dist/index.js
CHANGED
|
@@ -765,6 +765,8 @@ var ClickHouseEngines = /* @__PURE__ */ ((ClickHouseEngines2) => {
|
|
|
765
765
|
ClickHouseEngines2["ReplicatedReplacingMergeTree"] = "ReplicatedReplacingMergeTree";
|
|
766
766
|
ClickHouseEngines2["ReplicatedAggregatingMergeTree"] = "ReplicatedAggregatingMergeTree";
|
|
767
767
|
ClickHouseEngines2["ReplicatedSummingMergeTree"] = "ReplicatedSummingMergeTree";
|
|
768
|
+
ClickHouseEngines2["ReplicatedCollapsingMergeTree"] = "ReplicatedCollapsingMergeTree";
|
|
769
|
+
ClickHouseEngines2["ReplicatedVersionedCollapsingMergeTree"] = "ReplicatedVersionedCollapsingMergeTree";
|
|
768
770
|
return ClickHouseEngines2;
|
|
769
771
|
})(ClickHouseEngines || {});
|
|
770
772
|
function dropView(name) {
|