Remove the parameter name from convert() and convertIncludingMetamodel().
The parameterName is added to the class returned by the promise of the convert function for the converted value. So when all of the action function's parameters resolve and the action function is ready to be invoked, the converted values can be mapped to respective parameter names for creating the request.
It is possible to refactor to remove parameterName because Promise.all preserves the order in which the promises are added so the resolved values match the parameter order the invokeActionFunction() creates. However, this requires #41 to be fixed otherwise when building the request additional optional parameters are inserted that won't match invokeActionFunction() parameter order exactly as is needed.
Remove the parameter name from convert() and convertIncludingMetamodel().
_Originally posted by @barnettwilliam in https://github.com/mdenet/educationplatform/pull/49#discussion_r1190452451_