Never mind admin. I was not returning it back.
here is the solution
//using a filter hook
add_filter(‘USC_allowed_post_types’,’usc_filter_post_types’);
function usc_filter_post_types($types){
//to add a custom post type
$types[] = ‘MY_CUSTOM_POST_TYPE_NAME’;
return $types;
}