pagesetter_userapi_getPubList function return only 'created' time of publication. I suggest add publishDate time. Hack based on 6.3 final.
pnuserapi.php, line 198:
$titleColumn\n";
change to:
$titleColumn,
UNIX_TIMESTAMP($pubColumn[publishDate]) as $pubColumn[publishDate]\n";
and line 429:
'title' => $result->fields[8]);
change to:
'title' => $result->fields[8],
'publishDate' => $result->fields[9]);