fix additional encoding issue for cursor with equals symbol. Add contract client return type. Add additional cursor e2e test.

This commit is contained in:
tiagosiebler
2022-11-16 14:58:56 +00:00
parent c3f7ecb30e
commit 909e36347e
7 changed files with 75 additions and 6 deletions

View File

@@ -58,7 +58,7 @@ export function serializeParams(
return properties
.map((key) => {
const value = encodeSerialisedValues
? encodeURI(params[key])
? encodeURIComponent(params[key])
: params[key];
if (strict_validation === true && typeof value === 'undefined') {