lscm list changesets not showing expected data

I am using the lscm list changesets command due to a but in rtc 4.03 which causes a limitation in the return output
lscm history –r <repo> -w <workspace> –C <component> –j –m 20000
and the command
lscm list changesets –r <repo> -w <workspace> –C <component> –j –m 20000
These two commands should have similar outputs, yes? Unfortunately, the lscm list changesets command does not output a subnested "changes" section that lscm history outputs:
as an example, lscm history shows:
{
"changes": [
{
"author":
"changes": [
{
}
],
"comment":
"state":
...
}
]
}
and lscm list changesets shows:
{
"changes": [
{
"author":
"comment":
"state":
...
}
]
}
How do I get lscm listchangesets to output the missing information?
Thank you