export interface UpdateModel { upsert?: boolean; update: { $set?: { [key: string]: any; }; $inc?: { [key: string]: any; }; }; filter?: any; return?: Array; hashes?: Array; id?: string; cids?: boolean; }