I"m getting following error when trying to upload a very basic test app. I can’t tell what might be wrong. Seems its a valid freshsales app
here is the zip package I’m using to test. Bast I can tell its for the Freshsales product
The manifest file is as follows:
{
"platform-version": "2.0",
"product": {
"freshsales": {}
}
}
and the only other file that I think might be relavant is server.js file:
exports = {
events: [
{ event: "onCustomModuleCreate", callback: "onCustomModuleCreateCallback" }
],
onCustomModuleCreateCallback: function(payload) {
console.log("Logging arguments from onCustomModuleCreate event: " + JSON.stringify(payload));
}
};
Any tips as to what I might be doing wrong would be apprecaited.