import type * as HydraDB from "../index.js"; export interface MemoriesUnifiedIngestRequest { /** Collection scope. Defaults to the default collection when omitted. Formerly `sub_tenant_id`; the `sub_tenant_id` alias is still accepted (deprecated). */ collection?: string; contexts?: HydraDB.MemoriesIngestItem[]; /** Owning database. Formerly `tenant_id`; the `tenant_id` alias is still accepted (deprecated). */ database?: string; /** * Items is the canonical name from the design spec. `contexts` is accepted * as an alias because the field was drafted under that name. */ items?: HydraDB.MemoriesIngestItem[]; upsert?: boolean; }