@mastra/clickhouse 1.5.2 → 1.6.0-alpha.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 +27 -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 +12 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +12 -1
- package/dist/index.js.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
|
@@ -7150,7 +7150,18 @@ var ClickhouseStore = class extends MastraCompositeStore {
|
|
|
7150
7150
|
}
|
|
7151
7151
|
}
|
|
7152
7152
|
};
|
|
7153
|
+
var ClickhouseStoreVNext = class extends ClickhouseStore {
|
|
7154
|
+
constructor(config) {
|
|
7155
|
+
super(config);
|
|
7156
|
+
this.name = "ClickhouseStoreVNext";
|
|
7157
|
+
const observability = new ObservabilityStorageClickhouseVNext({ client: this.db });
|
|
7158
|
+
this.stores = {
|
|
7159
|
+
...this.stores,
|
|
7160
|
+
observability
|
|
7161
|
+
};
|
|
7162
|
+
}
|
|
7163
|
+
};
|
|
7153
7164
|
|
|
7154
|
-
export { BackgroundTasksStorageClickhouse, COLUMN_TYPES, ClickhouseStore, MemoryStorageClickhouse, ObservabilityStorageClickhouse, ObservabilityStorageClickhouseVNext, ScoresStorageClickhouse, TABLE_ENGINES, WorkflowsStorageClickhouse };
|
|
7165
|
+
export { BackgroundTasksStorageClickhouse, COLUMN_TYPES, ClickhouseStore, ClickhouseStoreVNext, MemoryStorageClickhouse, ObservabilityStorageClickhouse, ObservabilityStorageClickhouseVNext, ScoresStorageClickhouse, TABLE_ENGINES, WorkflowsStorageClickhouse };
|
|
7155
7166
|
//# sourceMappingURL=index.js.map
|
|
7156
7167
|
//# sourceMappingURL=index.js.map
|