chore: remove unused qdrant schema aliases (#5404)

Integrated into release/v3.8.42
This commit is contained in:
Jan Leon
2026-06-30 00:13:48 +02:00
committed by GitHub
parent 41619da23e
commit 27a33bea09
2 changed files with 1 additions and 5 deletions

View File

@@ -37,8 +37,3 @@ export const QdrantHealthResultSchema = z.object({
latencyMs: z.number(),
error: z.string().optional(),
});
export type QdrantSettings = z.infer<typeof QdrantSettingsSchema>;
export type QdrantSettingsUpdate = z.infer<typeof QdrantSettingsUpdateSchema>;
export type QdrantSearch = z.infer<typeof QdrantSearchSchema>;
export type QdrantHealthResult = z.infer<typeof QdrantHealthResultSchema>;

View File

@@ -325,6 +325,7 @@ test("QdrantSettingsSchema: accepts valid settings with defaults applied", () =>
if (result.success) {
assert.equal(result.data.port, 6333, "Default port should be 6333");
assert.equal(result.data.collection, "omniroute_memory", "Default collection");
assert.equal(result.data.quantization, "none", "Default quantization should be none");
assert.equal(result.data.hasApiKey, false, "Default hasApiKey should be false");
assert.equal(result.data.apiKeyMasked, null, "Default apiKeyMasked should be null");
}