import type * as HydraDB from "../index.js"; export interface TenantsDatabaseDetail { /** Owning database. Formerly `tenant_id`; the `tenant_id` alias is still accepted (deprecated). */ database?: string; /** * Type is the storage layout the database was created with: "split" (a * knowledge and a memory corpus, selected by `type` on every call) or * "unified" (one corpus; `type` defaults to unified). */ type?: HydraDB.TenantsDatabaseDetailType; }