@babav/knowledge-core-client 0.12.1 → 0.13.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/dist/index.d.ts CHANGED
@@ -202,12 +202,8 @@ export interface Tenant {
202
202
  id: UUID;
203
203
  name: string;
204
204
  external_ref: string | null;
205
- vector_index: string | null;
206
205
  source_bucket: string | null;
207
206
  artifacts_bucket: string | null;
208
- query_endpoint: string | null;
209
- query_public_domain: string | null;
210
- query_deployed_index_id: string | null;
211
207
  }
212
208
  export interface ApiKeyCreated {
213
209
  id: UUID;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@babav/knowledge-core-client",
3
- "version": "0.12.1",
3
+ "version": "0.13.0",
4
4
  "description": "TypeScript client for the Babav Knowledge Core API (Deno + Node 18+, zero deps).",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
package/src/index.ts CHANGED
@@ -65,7 +65,7 @@ export interface QueryOverrides {
65
65
  rerank_instruction?: string;
66
66
  max_hops?: number;
67
67
  groundedness_threshold?: number;
68
- grounding_enabled?: boolean; // HHEM groundedness score (default off)
68
+ grounding_enabled?: boolean; // groundedness score (default off)
69
69
  citations_enabled?: boolean; // source attribution (default on)
70
70
  }
71
71
 
@@ -215,12 +215,8 @@ export interface Tenant {
215
215
  id: UUID;
216
216
  name: string;
217
217
  external_ref: string | null;
218
- vector_index: string | null;
219
- source_bucket: string | null;
220
- artifacts_bucket: string | null;
221
- query_endpoint: string | null;
222
- query_public_domain: string | null;
223
- query_deployed_index_id: string | null;
218
+ source_bucket: string | null; // GCS source files
219
+ artifacts_bucket: string | null; // GCS parsed artifacts
224
220
  }
225
221
  export interface ApiKeyCreated {
226
222
  id: UUID;