Vector_stores.files.list() should also return the file name

To avoid:
v = self.fClient.beta.vector_stores.files.list(vector_store_id=vector_store_id)
for e in v.data :
f = self.fClient.files.retrieve(e.id)
e.filename = f.filename
return v.data