私の知る限り、あなたは以下のようにしなければなりません。
Model.findAndUpdate({_id: 'your_id'},
{$push: {'your_array_field':
{"name": "foo","idAccount": 123456}}},
{new: true}, (err, result) => {
// Rest of the action goes here
})