I can find posts types here http://developers.facebook.com/docs/reference/fql/stream/ (in the description of field "type"), but it's definitely not full list. Because the query
SELECT post_id, type, message FROM stream WHERE filter_key in (SELECT filter_key FROM stream_filter WHERE uid=me() AND type='newsfeed') AND is_hidden = 0
returns also types 65, 161. I believe there're also some other post types, which are not documented here http://developers.facebook.com/docs/reference/fql/stream/.
Where can I get the full list?