import type { MetadataKeyUpdate } from './metadata-key-update.js'; /** * Representation of the 'MetadataUpdateItem' schema. */ export type MetadataUpdateItem = { /** * List of collection or document or chunk ids for which the metadata should be updated */ ids: string[]; /** * List of metadata updates for the given resource ids */ metadataUpdates: MetadataKeyUpdate[]; } & Record; //# sourceMappingURL=metadata-update-item.d.ts.map