I agree that a bundler_list.txt type export would be pretty useful...
It is just a list of the photo filenames, so for now I use a short grep and sed command to do the job if you export the cameras as an .xml file:
grep "<camera " cameras.xml | sed 's/\"/ /g' | awk '{print $3, $5}' > cameras_list.txt
Hope that helps