For example, on the Juno chain, query the proposals in the voting period
const { proposals } = await client.cosmos.gov.v1beta1.proposals({
proposalStatus: ProposalStatus.PROPOSAL_STATUS_VOTING_PERIOD,
depositor: '',
voter: '',
});
console.log(proposals);
the result will be

expected result (has votes data)

For example, on the Juno chain, query the proposals in the voting period
the result will be

expected result (has votes data)
