list=watchlistraw adds its result to the api tag and not to query tag like all other query modules (in core). It is possible to change this? That makes a easy design on client site a harder (Each action module adds its result under its module name). Thanks.
Using list=watchlistraw gives
<?xml version="1.0"?>
<api>
<watchlistraw>
<wr ns="?" title="?" />
</watchlistraw>
<query-continue>
<watchlistraw wrcontinue="?|?" />
</query-continue>
</api>but using (for example) list=watchlist gives
<?xml version="1.0"?>
<api>
<query>
<watchlist>
<item pageid="?" revid="?" old_revid="?" ns="?" title="?" />
</watchlist>
</query>
<query-continue>
<watchlist wlstart="?" />
</query-continue>
</api>