@quintype/framework 7.18.2-webengage.11 → 7.18.2-webengage.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quintype/framework",
3
- "version": "7.18.2-webengage.11",
3
+ "version": "7.18.2-webengage.12",
4
4
  "description": "Libraries to help build Quintype Node.js apps",
5
5
  "main": "index.js",
6
6
  "engines": {
@@ -29,11 +29,9 @@ exports.webengageApi = async function webengageApi(req, res, next, { webengageAp
29
29
  body: { eventName: eventName, eventData: { eventData, user_type: "malibu_user" } },
30
30
  json: true,
31
31
  });
32
- console.log("webengage event triggered successfully", new Date(req.body.v1.event.time));
33
32
  res.status(200).send("webengage event triggered successfully");
34
33
  return;
35
34
  } catch (error) {
36
- console.error("webengage event failed", new Date(req.body.v1.event.time));
37
35
  res.status(500).send("webengage event failed");
38
36
  return;
39
37
  }