Doesn’t work, getting type error in the editor and when trying to send the message getting this error in the request response:
{
"status": "error",
"message": "Parameters validation error!",
"code": 500000,
"data": {
"detail": [
"The 'messageFeedId' field is required.",
"The 'referenceId' field is required."
]
}
}
@SocialPlus_Support I am also having this issue, using the latest beta version of this package. I believe it is because of this line in /src/message/api/createMessage.ts :
It sets the referenceId to undefined in effect (uniqueId is never defined, see line 11), so it is never sent with the API request, and hence this fails. I have tried editing the package code to manually generate a uniqueId, and then the request successfully executes.
Is there any timeline available on when this issue will be fixed, as it is a fairly important part of the package?