@mastra/clickhouse 1.5.2 → 1.6.0
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/CHANGELOG.md +54 -0
- package/dist/docs/SKILL.md +1 -1
- package/dist/docs/assets/SOURCE_MAP.json +1 -1
- package/dist/docs/references/reference-storage-clickhouse.md +40 -14
- package/dist/index.cjs +15 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +15 -2
- package/dist/index.js.map +1 -1
- package/dist/storage/db/utils.d.ts.map +1 -1
- package/dist/storage/index.d.ts +29 -0
- package/dist/storage/index.d.ts.map +1 -1
- package/package.json +5 -5
package/dist/index.js
CHANGED
|
@@ -38,7 +38,9 @@ var TABLE_ENGINES = {
|
|
|
38
38
|
[TABLE_SKILLS]: `ReplacingMergeTree()`,
|
|
39
39
|
[TABLE_SKILL_VERSIONS]: `MergeTree()`,
|
|
40
40
|
[TABLE_SKILL_BLOBS]: `ReplacingMergeTree()`,
|
|
41
|
-
mastra_background_tasks: `ReplacingMergeTree()
|
|
41
|
+
mastra_background_tasks: `ReplacingMergeTree()`,
|
|
42
|
+
mastra_channel_installations: `ReplacingMergeTree()`,
|
|
43
|
+
mastra_channel_config: `ReplacingMergeTree()`
|
|
42
44
|
};
|
|
43
45
|
var COLUMN_TYPES = {
|
|
44
46
|
text: "String",
|
|
@@ -7150,7 +7152,18 @@ var ClickhouseStore = class extends MastraCompositeStore {
|
|
|
7150
7152
|
}
|
|
7151
7153
|
}
|
|
7152
7154
|
};
|
|
7155
|
+
var ClickhouseStoreVNext = class extends ClickhouseStore {
|
|
7156
|
+
constructor(config) {
|
|
7157
|
+
super(config);
|
|
7158
|
+
this.name = "ClickhouseStoreVNext";
|
|
7159
|
+
const observability = new ObservabilityStorageClickhouseVNext({ client: this.db });
|
|
7160
|
+
this.stores = {
|
|
7161
|
+
...this.stores,
|
|
7162
|
+
observability
|
|
7163
|
+
};
|
|
7164
|
+
}
|
|
7165
|
+
};
|
|
7153
7166
|
|
|
7154
|
-
export { BackgroundTasksStorageClickhouse, COLUMN_TYPES, ClickhouseStore, MemoryStorageClickhouse, ObservabilityStorageClickhouse, ObservabilityStorageClickhouseVNext, ScoresStorageClickhouse, TABLE_ENGINES, WorkflowsStorageClickhouse };
|
|
7167
|
+
export { BackgroundTasksStorageClickhouse, COLUMN_TYPES, ClickhouseStore, ClickhouseStoreVNext, MemoryStorageClickhouse, ObservabilityStorageClickhouse, ObservabilityStorageClickhouseVNext, ScoresStorageClickhouse, TABLE_ENGINES, WorkflowsStorageClickhouse };
|
|
7155
7168
|
//# sourceMappingURL=index.js.map
|
|
7156
7169
|
//# sourceMappingURL=index.js.map
|